public class ItemSalesBucket extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
ItemSalesBucket.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ItemSalesBucket> |
CREATOR |
static JSONifiable.Creator<ItemSalesBucket> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
ItemSalesBucket()
Constructs a new empty instance.
|
protected |
ItemSalesBucket(boolean noInit)
Constructs a new empty instance.
|
|
ItemSalesBucket(ItemSalesBucket src)
Constructs a new instance that is a deep copy of the source instance.
|
|
ItemSalesBucket(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.
|
|
ItemSalesBucket(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearDeleted()
Clears the 'deleted' 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 |
clearItems()
Clears the 'items' 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.
|
ItemSalesBucket |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
Boolean |
getDeleted() |
protected GenericClient |
getGenericClient() |
String |
getId() |
List<Reference> |
getItems() |
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 |
hasDeleted()
Checks whether the 'deleted' 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 |
hasItems()
Checks whether the 'items' 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 |
isNotEmptyItems()
Checks whether the 'items' field is set and is not null and is not empty
|
boolean |
isNotNullDeleted()
Checks whether the 'deleted' field is set and is not null
|
boolean |
isNotNullId()
Checks whether the 'id' field is set and is not null
|
boolean |
isNotNullItems()
Checks whether the 'items' field is set and is not null
|
boolean |
isNotNullName()
Checks whether the 'name' field is set and is not null
|
void |
mergeChanges(ItemSalesBucket 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.
|
ItemSalesBucket |
setDeleted(Boolean deleted)
Sets the field 'deleted'.
|
ItemSalesBucket |
setId(String id)
Sets the field 'id'.
|
ItemSalesBucket |
setItems(List<Reference> items)
Sets the field 'items'.
|
ItemSalesBucket |
setName(String name)
Sets the field 'name'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<ItemSalesBucket> CREATOR
public static final JSONifiable.Creator<ItemSalesBucket> JSON_CREATOR
public ItemSalesBucket()
protected ItemSalesBucket(boolean noInit)
public ItemSalesBucket(String json) throws IllegalArgumentException
IllegalArgumentException
public ItemSalesBucket(JSONObject jsonObject)
public ItemSalesBucket(ItemSalesBucket src)
public String getName()
public String getId()
public Boolean getDeleted()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullName()
public boolean isNotNullId()
public boolean isNotNullItems()
public boolean isNotEmptyItems()
public boolean isNotNullDeleted()
public boolean hasName()
public boolean hasId()
public boolean hasItems()
public boolean hasDeleted()
public ItemSalesBucket setName(String name)
public ItemSalesBucket setId(String id)
public ItemSalesBucket setItems(List<Reference> items)
public ItemSalesBucket setDeleted(Boolean deleted)
public void clearName()
public void clearId()
public void clearItems()
public void clearDeleted()
public boolean containsChanges()
public void resetChangeLog()
public ItemSalesBucket copyChanges()
public void mergeChanges(ItemSalesBucket src)