public class DeviceType extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
DeviceType.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<DeviceType> |
CREATOR |
static JSONifiable.Creator<DeviceType> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
DeviceType()
Constructs a new empty instance.
|
protected |
DeviceType(boolean noInit)
Constructs a new empty instance.
|
|
DeviceType(DeviceType src)
Constructs a new instance that is a deep copy of the source instance.
|
|
DeviceType(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.
|
|
DeviceType(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearDisplayName()
Clears the 'displayName' 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 |
clearModels()
Clears the 'models' 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 |
clearSdkVersion()
Clears the 'sdkVersion' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
DeviceType |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
String |
getDisplayName() |
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.
|
String |
getModels() |
String |
getName() |
Integer |
getSdkVersion()
SDK version supported by device
|
boolean |
hasDisplayName()
Checks whether the 'displayName' 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 |
hasModels()
Checks whether the 'models' 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 |
hasSdkVersion()
Checks whether the 'sdkVersion' field has been set, however the value could be null
|
boolean |
isNotNullDisplayName()
Checks whether the 'displayName' field is set and is not null
|
boolean |
isNotNullId()
Checks whether the 'id' field is set and is not null
|
boolean |
isNotNullModels()
Checks whether the 'models' field is set and is not null
|
boolean |
isNotNullName()
Checks whether the 'name' field is set and is not null
|
boolean |
isNotNullSdkVersion()
Checks whether the 'sdkVersion' field is set and is not null
|
void |
mergeChanges(DeviceType 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.
|
DeviceType |
setDisplayName(String displayName)
Sets the field 'displayName'.
|
DeviceType |
setId(String id)
Sets the field 'id'.
|
DeviceType |
setModels(String models)
Sets the field 'models'.
|
DeviceType |
setName(String name)
Sets the field 'name'.
|
DeviceType |
setSdkVersion(Integer sdkVersion)
Sets the field 'sdkVersion'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<DeviceType> CREATOR
public static final JSONifiable.Creator<DeviceType> JSON_CREATOR
public DeviceType()
protected DeviceType(boolean noInit)
public DeviceType(String json) throws IllegalArgumentException
IllegalArgumentException
public DeviceType(JSONObject jsonObject)
public DeviceType(DeviceType src)
public String getId()
public String getName()
public String getDisplayName()
public Integer getSdkVersion()
public String getModels()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullId()
public boolean isNotNullName()
public boolean isNotNullDisplayName()
public boolean isNotNullSdkVersion()
public boolean isNotNullModels()
public boolean hasId()
public boolean hasName()
public boolean hasDisplayName()
public boolean hasSdkVersion()
public boolean hasModels()
public DeviceType setId(String id)
public DeviceType setName(String name)
public DeviceType setDisplayName(String displayName)
public DeviceType setSdkVersion(Integer sdkVersion)
public DeviceType setModels(String models)
public void clearId()
public void clearName()
public void clearDisplayName()
public void clearSdkVersion()
public void clearModels()
public boolean containsChanges()
public void resetChangeLog()
public DeviceType copyChanges()
public void mergeChanges(DeviceType src)