public class InventoryItems extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
InventoryItems.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<InventoryItems> |
CREATOR |
static JSONifiable.Creator<InventoryItems> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
InventoryItems()
Constructs a new empty instance.
|
protected |
InventoryItems(boolean noInit)
Constructs a new empty instance.
|
|
InventoryItems(InventoryItems src)
Constructs a new instance that is a deep copy of the source instance.
|
|
InventoryItems(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.
|
|
InventoryItems(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearItems()
Clears the 'items' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
InventoryItems |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
protected GenericClient |
getGenericClient() |
List<Item> |
getItems()
Array of inventory items
|
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.
|
boolean |
hasItems()
Checks whether the 'items' 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 |
isNotNullItems()
Checks whether the 'items' field is set and is not null
|
void |
mergeChanges(InventoryItems 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.
|
InventoryItems |
setItems(List<Item> items)
Sets the field 'items'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<InventoryItems> CREATOR
public static final JSONifiable.Creator<InventoryItems> JSON_CREATOR
public InventoryItems()
protected InventoryItems(boolean noInit)
public InventoryItems(String json) throws IllegalArgumentException
IllegalArgumentException
public InventoryItems(JSONObject jsonObject)
public InventoryItems(InventoryItems src)
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullItems()
public boolean isNotEmptyItems()
public boolean hasItems()
public InventoryItems setItems(List<Item> items)
public void clearItems()
public boolean containsChanges()
public void resetChangeLog()
public InventoryItems copyChanges()
public void mergeChanges(InventoryItems src)