public class ServiceChargeAmount extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
ServiceChargeAmount.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ServiceChargeAmount> |
CREATOR |
static JSONifiable.Creator<ServiceChargeAmount> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
ServiceChargeAmount()
Constructs a new empty instance.
|
protected |
ServiceChargeAmount(boolean noInit)
Constructs a new empty instance.
|
|
ServiceChargeAmount(JSONObject jsonObject)
Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be
reflected in this instance and vice-versa.
|
|
ServiceChargeAmount(ServiceChargeAmount src)
Constructs a new instance that is a deep copy of the source instance.
|
|
ServiceChargeAmount(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearAmount()
Clears the 'amount' field, the 'has' method for this field will now return false
|
void |
clearId()
Clears the 'id' field, the 'has' method for this field will now return false
|
void |
clearName()
Clears the 'name' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
ServiceChargeAmount |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
Long |
getAmount() |
protected GenericClient |
getGenericClient() |
String |
getId() |
JSONObject |
getJSONObject()
Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be
reflected in this instance and vice-versa.
|
String |
getName() |
boolean |
hasAmount()
Checks whether the 'amount' field has been set, however the value could be null
|
boolean |
hasId()
Checks whether the 'id' field has been set, however the value could be null
|
boolean |
hasName()
Checks whether the 'name' field has been set, however the value could be null
|
boolean |
isNotNullAmount()
Checks whether the 'amount' field is set and is not null
|
boolean |
isNotNullId()
Checks whether the 'id' field is set and is not null
|
boolean |
isNotNullName()
Checks whether the 'name' field is set and is not null
|
void |
mergeChanges(ServiceChargeAmount src)
Copy all the changed fields from the given source to this instance.
|
void |
resetChangeLog()
Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
|
ServiceChargeAmount |
setAmount(Long amount)
Sets the field 'amount'.
|
ServiceChargeAmount |
setId(String id)
Sets the field 'id'.
|
ServiceChargeAmount |
setName(String name)
Sets the field 'name'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<ServiceChargeAmount> CREATOR
public static final JSONifiable.Creator<ServiceChargeAmount> JSON_CREATOR
public ServiceChargeAmount()
protected ServiceChargeAmount(boolean noInit)
public ServiceChargeAmount(String json) throws IllegalArgumentException
IllegalArgumentException
public ServiceChargeAmount(JSONObject jsonObject)
public ServiceChargeAmount(ServiceChargeAmount src)
public String getId()
public String getName()
public Long getAmount()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullId()
public boolean isNotNullName()
public boolean isNotNullAmount()
public boolean hasId()
public boolean hasName()
public boolean hasAmount()
public ServiceChargeAmount setId(String id)
public ServiceChargeAmount setName(String name)
public ServiceChargeAmount setAmount(Long amount)
public void clearId()
public void clearName()
public void clearAmount()
public boolean containsChanges()
public void resetChangeLog()
public ServiceChargeAmount copyChanges()
public void mergeChanges(ServiceChargeAmount src)