public class UIConfiguration extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
UIConfiguration.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<UIConfiguration> |
CREATOR |
static JSONifiable.Creator<UIConfiguration> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
UIConfiguration()
Constructs a new empty instance.
|
protected |
UIConfiguration(boolean noInit)
Constructs a new empty instance.
|
|
UIConfiguration(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.
|
|
UIConfiguration(String json)
Constructs a new instance from the given JSON String.
|
|
UIConfiguration(UIConfiguration src)
Constructs a new instance that is a deep copy of the source instance.
|
Modifier and Type | Method and Description |
---|---|
void |
clearTheme()
Clears the 'theme' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
UIConfiguration |
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.
|
Themes |
getTheme()
The theme to be set
|
boolean |
hasTheme()
Checks whether the 'theme' field has been set, however the value could be null
|
boolean |
isNotNullTheme()
Checks whether the 'theme' field is set and is not null
|
void |
mergeChanges(UIConfiguration 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.
|
UIConfiguration |
setTheme(Themes theme)
Sets the field 'theme'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<UIConfiguration> CREATOR
public static final JSONifiable.Creator<UIConfiguration> JSON_CREATOR
public UIConfiguration()
protected UIConfiguration(boolean noInit)
public UIConfiguration(String json) throws IllegalArgumentException
IllegalArgumentException
public UIConfiguration(JSONObject jsonObject)
public UIConfiguration(UIConfiguration src)
public Themes getTheme()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullTheme()
public boolean hasTheme()
public UIConfiguration setTheme(Themes theme)
public void clearTheme()
public boolean containsChanges()
public void resetChangeLog()
public UIConfiguration copyChanges()
public void mergeChanges(UIConfiguration src)