public class ServiceOrderType extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
ServiceOrderType.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ServiceOrderType> |
CREATOR |
static JSONifiable.Creator<ServiceOrderType> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
ServiceOrderType()
Constructs a new empty instance.
|
protected |
ServiceOrderType(boolean noInit)
Constructs a new empty instance.
|
|
ServiceOrderType(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.
|
|
ServiceOrderType(ServiceOrderType src)
Constructs a new instance that is a deep copy of the source instance.
|
|
ServiceOrderType(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearOnlineOrderService()
Clears the 'onlineOrderService' field, the 'has' method for this field will now return false
|
void |
clearOrderType()
Clears the 'orderType' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
ServiceOrderType |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
protected GenericClient |
getGenericClient() |
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.
|
OnlineOrderService |
getOnlineOrderService() |
OrderType |
getOrderType() |
boolean |
hasOnlineOrderService()
Checks whether the 'onlineOrderService' field has been set, however the value could be null
|
boolean |
hasOrderType()
Checks whether the 'orderType' field has been set, however the value could be null
|
boolean |
isNotNullOnlineOrderService()
Checks whether the 'onlineOrderService' field is set and is not null
|
boolean |
isNotNullOrderType()
Checks whether the 'orderType' field is set and is not null
|
void |
mergeChanges(ServiceOrderType 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.
|
ServiceOrderType |
setOnlineOrderService(OnlineOrderService onlineOrderService)
Sets the field 'onlineOrderService'.
|
ServiceOrderType |
setOrderType(OrderType orderType)
Sets the field 'orderType'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<ServiceOrderType> CREATOR
public static final JSONifiable.Creator<ServiceOrderType> JSON_CREATOR
public ServiceOrderType()
protected ServiceOrderType(boolean noInit)
public ServiceOrderType(String json) throws IllegalArgumentException
IllegalArgumentException
public ServiceOrderType(JSONObject jsonObject)
public ServiceOrderType(ServiceOrderType src)
public OnlineOrderService getOnlineOrderService()
public OrderType getOrderType()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullOnlineOrderService()
public boolean isNotNullOrderType()
public boolean hasOnlineOrderService()
public boolean hasOrderType()
public ServiceOrderType setOnlineOrderService(OnlineOrderService onlineOrderService)
public ServiceOrderType setOrderType(OrderType orderType)
public void clearOnlineOrderService()
public void clearOrderType()
public boolean containsChanges()
public void resetChangeLog()
public ServiceOrderType copyChanges()
public void mergeChanges(ServiceOrderType src)