public class SignatureDisclaimer extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
SignatureDisclaimer.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<SignatureDisclaimer> |
CREATOR |
static JSONifiable.Creator<SignatureDisclaimer> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
SignatureDisclaimer()
Constructs a new empty instance.
|
protected |
SignatureDisclaimer(boolean noInit)
Constructs a new empty instance.
|
|
SignatureDisclaimer(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.
|
|
SignatureDisclaimer(SignatureDisclaimer src)
Constructs a new instance that is a deep copy of the source instance.
|
|
SignatureDisclaimer(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearDisclaimerText()
Clears the 'disclaimerText' field, the 'has' method for this field will now return false
|
void |
clearDisclaimerValues()
Clears the 'disclaimerValues' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
SignatureDisclaimer |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
String |
getDisclaimerText() |
Map<String,String> |
getDisclaimerValues()
Values that will be substituted in standard disclaimer text (txn date/time, account number, product label, etc.
|
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.
|
boolean |
hasDisclaimerText()
Checks whether the 'disclaimerText' field has been set, however the value could be null
|
boolean |
hasDisclaimerValues()
Checks whether the 'disclaimerValues' field has been set, however the value could be null
|
boolean |
isNotEmptyDisclaimerValues()
Checks whether the 'disclaimerValues' field is set and is not null and is not empty
|
boolean |
isNotNullDisclaimerText()
Checks whether the 'disclaimerText' field is set and is not null
|
boolean |
isNotNullDisclaimerValues()
Checks whether the 'disclaimerValues' field is set and is not null
|
void |
mergeChanges(SignatureDisclaimer 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.
|
SignatureDisclaimer |
setDisclaimerText(String disclaimerText)
Sets the field 'disclaimerText'.
|
SignatureDisclaimer |
setDisclaimerValues(Map<String,String> disclaimerValues)
Sets the field 'disclaimerValues'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<SignatureDisclaimer> CREATOR
public static final JSONifiable.Creator<SignatureDisclaimer> JSON_CREATOR
public SignatureDisclaimer()
protected SignatureDisclaimer(boolean noInit)
public SignatureDisclaimer(String json) throws IllegalArgumentException
IllegalArgumentException
public SignatureDisclaimer(JSONObject jsonObject)
public SignatureDisclaimer(SignatureDisclaimer src)
public String getDisclaimerText()
public Map<String,String> getDisclaimerValues()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullDisclaimerText()
public boolean isNotNullDisclaimerValues()
public boolean isNotEmptyDisclaimerValues()
public boolean hasDisclaimerText()
public boolean hasDisclaimerValues()
public SignatureDisclaimer setDisclaimerText(String disclaimerText)
public SignatureDisclaimer setDisclaimerValues(Map<String,String> disclaimerValues)
public void clearDisclaimerText()
public void clearDisclaimerValues()
public boolean containsChanges()
public void resetChangeLog()
public SignatureDisclaimer copyChanges()
public void mergeChanges(SignatureDisclaimer src)