public class Tag extends GenericParcelable implements Validator, JSONifiable
IInventoryService
Modifier and Type | Class and Description |
---|---|
static interface |
Tag.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<Tag> |
CREATOR |
static JSONifiable.Creator<Tag> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
Tag()
Constructs a new empty instance.
|
protected |
Tag(boolean noInit)
Constructs a new empty instance.
|
|
Tag(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.
|
|
Tag(String json)
Constructs a new instance from the given JSON String.
|
|
Tag(Tag src)
Constructs a new instance that is a deep copy of the source instance.
|
Modifier and Type | Method and Description |
---|---|
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
|
void |
clearPrinters()
Clears the 'printers' field, the 'has' method for this field will now return false
|
void |
clearShowInReporting()
Clears the 'showInReporting' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
Tag |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
protected GenericClient |
getGenericClient() |
String |
getId()
Unique identifier
|
List<Reference> |
getItems()
Items associated with this tag
|
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()
Tag name
|
List<Reference> |
getPrinters()
Printers associated with this tag
|
Boolean |
getShowInReporting()
True if tag is a summary label in the reporting app
|
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 |
hasPrinters()
Checks whether the 'printers' field has been set, however the value could be null
|
boolean |
hasShowInReporting()
Checks whether the 'showInReporting' 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 |
isNotEmptyPrinters()
Checks whether the 'printers' field is set and is not null and is not empty
|
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
|
boolean |
isNotNullPrinters()
Checks whether the 'printers' field is set and is not null
|
boolean |
isNotNullShowInReporting()
Checks whether the 'showInReporting' field is set and is not null
|
void |
mergeChanges(Tag 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.
|
Tag |
setId(String id)
Sets the field 'id'.
|
Tag |
setItems(List<Reference> items)
Sets the field 'items'.
|
Tag |
setName(String name)
Sets the field 'name'.
|
Tag |
setPrinters(List<Reference> printers)
Sets the field 'printers'.
|
Tag |
setShowInReporting(Boolean showInReporting)
Sets the field 'showInReporting'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<Tag> CREATOR
public static final JSONifiable.Creator<Tag> JSON_CREATOR
public Tag()
protected Tag(boolean noInit)
public Tag(String json) throws IllegalArgumentException
IllegalArgumentException
public Tag(JSONObject jsonObject)
public Tag(Tag src)
public String getId()
public String getName()
public Boolean getShowInReporting()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullId()
public boolean isNotNullName()
public boolean isNotNullShowInReporting()
public boolean isNotNullItems()
public boolean isNotEmptyItems()
public boolean isNotNullPrinters()
public boolean isNotEmptyPrinters()
public boolean hasId()
public boolean hasName()
public boolean hasShowInReporting()
public boolean hasItems()
public boolean hasPrinters()
public Tag setShowInReporting(Boolean showInReporting)
public Tag setItems(List<Reference> items)
public Tag setPrinters(List<Reference> printers)
public void clearId()
public void clearName()
public void clearShowInReporting()
public void clearItems()
public void clearPrinters()
public boolean containsChanges()
public void resetChangeLog()
public Tag copyChanges()
public void mergeChanges(Tag src)