Class TipSuggestion

    • Constructor Detail

      • TipSuggestion

        public TipSuggestion()
        Constructs a new empty instance.
      • TipSuggestion

        protected TipSuggestion​(boolean noInit)
        Constructs a new empty instance.
      • TipSuggestion

        public TipSuggestion​(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.
      • TipSuggestion

        public TipSuggestion​(TipSuggestion src)
        Constructs a new instance that is a deep copy of the source instance. It does not copy the bundle or changelog.
    • Method Detail

      • getId

        public String getId()
      • getName

        public String getName()
        Name of the tip
      • getPercentage

        public Long getPercentage()
        Suggested tip percentage
      • getAmount

        public Long getAmount()
        Suggested tip amount
      • getIsEnabled

        public Boolean getIsEnabled()
      • getFlatTip

        public Long getFlatTip()
        Suggested flat tip amount
      • getJSONObject

        public 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.
        Specified by:
        getJSONObject in interface JSONifiable
      • isNotNullId

        public boolean isNotNullId()
        Checks whether the 'id' field is set and is not null
      • isNotNullName

        public boolean isNotNullName()
        Checks whether the 'name' field is set and is not null
      • isNotNullPercentage

        public boolean isNotNullPercentage()
        Checks whether the 'percentage' field is set and is not null
      • isNotNullAmount

        public boolean isNotNullAmount()
        Checks whether the 'amount' field is set and is not null
      • isNotNullIsEnabled

        public boolean isNotNullIsEnabled()
        Checks whether the 'isEnabled' field is set and is not null
      • isNotNullFlatTip

        public boolean isNotNullFlatTip()
        Checks whether the 'flatTip' field is set and is not null
      • hasId

        public boolean hasId()
        Checks whether the 'id' field has been set, however the value could be null
      • hasName

        public boolean hasName()
        Checks whether the 'name' field has been set, however the value could be null
      • hasPercentage

        public boolean hasPercentage()
        Checks whether the 'percentage' field has been set, however the value could be null
      • hasAmount

        public boolean hasAmount()
        Checks whether the 'amount' field has been set, however the value could be null
      • hasIsEnabled

        public boolean hasIsEnabled()
        Checks whether the 'isEnabled' field has been set, however the value could be null
      • hasFlatTip

        public boolean hasFlatTip()
        Checks whether the 'flatTip' field has been set, however the value could be null
      • setPercentage

        public TipSuggestion setPercentage​(Long percentage)
        Sets the field 'percentage'.
      • setAmount

        public TipSuggestion setAmount​(Long amount)
        Sets the field 'amount'.
      • setIsEnabled

        public TipSuggestion setIsEnabled​(Boolean isEnabled)
        Sets the field 'isEnabled'.
      • setFlatTip

        public TipSuggestion setFlatTip​(Long flatTip)
        Sets the field 'flatTip'.
      • clearId

        public void clearId()
        Clears the 'id' field, the 'has' method for this field will now return false
      • clearName

        public void clearName()
        Clears the 'name' field, the 'has' method for this field will now return false
      • clearPercentage

        public void clearPercentage()
        Clears the 'percentage' field, the 'has' method for this field will now return false
      • clearAmount

        public void clearAmount()
        Clears the 'amount' field, the 'has' method for this field will now return false
      • clearIsEnabled

        public void clearIsEnabled()
        Clears the 'isEnabled' field, the 'has' method for this field will now return false
      • clearFlatTip

        public void clearFlatTip()
        Clears the 'flatTip' field, the 'has' method for this field will now return false
      • containsChanges

        public boolean containsChanges()
        Returns true if this instance has any changes.
      • resetChangeLog

        public void resetChangeLog()
        Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
      • copyChanges

        public TipSuggestion copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

        public void mergeChanges​(TipSuggestion src)
        Copy all the changed fields from the given source to this instance.