public class PurchaseCardBillingInfo extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
PurchaseCardBillingInfo.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<PurchaseCardBillingInfo> |
CREATOR |
static JSONifiable.Creator<PurchaseCardBillingInfo> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
PurchaseCardBillingInfo()
Constructs a new empty instance.
|
protected |
PurchaseCardBillingInfo(boolean noInit)
Constructs a new empty instance.
|
|
PurchaseCardBillingInfo(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.
|
|
PurchaseCardBillingInfo(PurchaseCardBillingInfo src)
Constructs a new instance that is a deep copy of the source instance.
|
|
PurchaseCardBillingInfo(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearBillingAddress()
Clears the 'billingAddress' field, the 'has' method for this field will now return false
|
void |
clearBillingZip()
Clears the 'billingZip' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
PurchaseCardBillingInfo |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
String |
getBillingAddress()
billing address for l2.
|
String |
getBillingZip()
billing zip for l2.
|
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 |
hasBillingAddress()
Checks whether the 'billingAddress' field has been set, however the value could be null
|
boolean |
hasBillingZip()
Checks whether the 'billingZip' field has been set, however the value could be null
|
boolean |
isNotNullBillingAddress()
Checks whether the 'billingAddress' field is set and is not null
|
boolean |
isNotNullBillingZip()
Checks whether the 'billingZip' field is set and is not null
|
void |
mergeChanges(PurchaseCardBillingInfo 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.
|
PurchaseCardBillingInfo |
setBillingAddress(String billingAddress)
Sets the field 'billingAddress'.
|
PurchaseCardBillingInfo |
setBillingZip(String billingZip)
Sets the field 'billingZip'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<PurchaseCardBillingInfo> CREATOR
public static final JSONifiable.Creator<PurchaseCardBillingInfo> JSON_CREATOR
public PurchaseCardBillingInfo()
protected PurchaseCardBillingInfo(boolean noInit)
public PurchaseCardBillingInfo(String json) throws IllegalArgumentException
IllegalArgumentException
public PurchaseCardBillingInfo(JSONObject jsonObject)
public PurchaseCardBillingInfo(PurchaseCardBillingInfo src)
public String getBillingAddress()
public String getBillingZip()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullBillingAddress()
public boolean isNotNullBillingZip()
public boolean hasBillingAddress()
public boolean hasBillingZip()
public PurchaseCardBillingInfo setBillingAddress(String billingAddress)
public PurchaseCardBillingInfo setBillingZip(String billingZip)
public void clearBillingAddress()
public void clearBillingZip()
public boolean containsChanges()
public void resetChangeLog()
public PurchaseCardBillingInfo copyChanges()
public void mergeChanges(PurchaseCardBillingInfo src)