public class ReportDiscountGroup extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
ReportDiscountGroup.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ReportDiscountGroup> |
CREATOR |
static JSONifiable.Creator<ReportDiscountGroup> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
ReportDiscountGroup()
Constructs a new empty instance.
|
protected |
ReportDiscountGroup(boolean noInit)
Constructs a new empty instance.
|
|
ReportDiscountGroup(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.
|
|
ReportDiscountGroup(ReportDiscountGroup src)
Constructs a new instance that is a deep copy of the source instance.
|
|
ReportDiscountGroup(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearDiscountRows()
Clears the 'discountRows' 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 |
clearTotal()
Clears the 'total' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
ReportDiscountGroup |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
List<ReportDiscountRow> |
getDiscountRows()
Summary of orders containing discount group's discount
|
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.
|
String |
getName()
Name of discount
|
ReportDiscountRow |
getTotal()
Total value of all line item and order discounts
|
boolean |
hasDiscountRows()
Checks whether the 'discountRows' 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 |
hasTotal()
Checks whether the 'total' field has been set, however the value could be null
|
boolean |
isNotEmptyDiscountRows()
Checks whether the 'discountRows' field is set and is not null and is not empty
|
boolean |
isNotNullDiscountRows()
Checks whether the 'discountRows' field is set and is not null
|
boolean |
isNotNullName()
Checks whether the 'name' field is set and is not null
|
boolean |
isNotNullTotal()
Checks whether the 'total' field is set and is not null
|
void |
mergeChanges(ReportDiscountGroup 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.
|
ReportDiscountGroup |
setDiscountRows(List<ReportDiscountRow> discountRows)
Sets the field 'discountRows'.
|
ReportDiscountGroup |
setName(String name)
Sets the field 'name'.
|
ReportDiscountGroup |
setTotal(ReportDiscountRow total)
Sets the field 'total'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final Parcelable.Creator<ReportDiscountGroup> CREATOR
public static final JSONifiable.Creator<ReportDiscountGroup> JSON_CREATOR
public ReportDiscountGroup()
protected ReportDiscountGroup(boolean noInit)
public ReportDiscountGroup(String json) throws IllegalArgumentException
IllegalArgumentException
public ReportDiscountGroup(JSONObject jsonObject)
public ReportDiscountGroup(ReportDiscountGroup src)
public String getName()
public ReportDiscountRow getTotal()
public List<ReportDiscountRow> getDiscountRows()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullName()
public boolean isNotNullTotal()
public boolean isNotNullDiscountRows()
public boolean isNotEmptyDiscountRows()
public boolean hasName()
public boolean hasTotal()
public boolean hasDiscountRows()
public ReportDiscountGroup setName(String name)
public ReportDiscountGroup setTotal(ReportDiscountRow total)
public ReportDiscountGroup setDiscountRows(List<ReportDiscountRow> discountRows)
public void clearName()
public void clearTotal()
public void clearDiscountRows()
public boolean containsChanges()
public void resetChangeLog()
public ReportDiscountGroup copyChanges()
public void mergeChanges(ReportDiscountGroup src)