public class CategorySortOrder extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
CategorySortOrder.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<CategorySortOrder> |
CREATOR |
static JSONifiable.Creator<CategorySortOrder> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
CategorySortOrder()
Constructs a new empty instance.
|
protected |
CategorySortOrder(boolean noInit)
Constructs a new empty instance.
|
|
CategorySortOrder(CategorySortOrder src)
Constructs a new instance that is a deep copy of the source instance.
|
|
CategorySortOrder(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.
|
|
CategorySortOrder(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearId()
Clears the 'id' field, the 'has' method for this field will now return false
|
void |
clearSortOrder()
Clears the 'sortOrder' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
CategorySortOrder |
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
|
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.
|
Integer |
getSortOrder()
Integer used to determine how this category is sorted against other categories.
|
boolean |
hasId()
Checks whether the 'id' field has been set, however the value could be null
|
boolean |
hasSortOrder()
Checks whether the 'sortOrder' field has been set, however the value could be null
|
boolean |
isNotNullId()
Checks whether the 'id' field is set and is not null
|
boolean |
isNotNullSortOrder()
Checks whether the 'sortOrder' field is set and is not null
|
void |
mergeChanges(CategorySortOrder 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.
|
CategorySortOrder |
setId(String id)
Sets the field 'id'.
|
CategorySortOrder |
setSortOrder(Integer sortOrder)
Sets the field 'sortOrder'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<CategorySortOrder> CREATOR
public static final JSONifiable.Creator<CategorySortOrder> JSON_CREATOR
public CategorySortOrder()
protected CategorySortOrder(boolean noInit)
public CategorySortOrder(String json) throws IllegalArgumentException
IllegalArgumentException
public CategorySortOrder(JSONObject jsonObject)
public CategorySortOrder(CategorySortOrder src)
public String getId()
public Integer getSortOrder()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullId()
public boolean isNotNullSortOrder()
public boolean hasId()
public boolean hasSortOrder()
public CategorySortOrder setId(String id)
public CategorySortOrder setSortOrder(Integer sortOrder)
public void clearId()
public void clearSortOrder()
public boolean containsChanges()
public void resetChangeLog()
public CategorySortOrder copyChanges()
public void mergeChanges(CategorySortOrder src)