Class AppBundleCountry

    • Constructor Detail

      • AppBundleCountry

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

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

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

        public AppBundleCountry​(AppBundleCountry 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()
        Unique identifier
      • getPrice

        public Long getPrice()
      • getPricePerDevice

        public Long getPricePerDevice()
      • getCountry

        public String getCountry()
        The country of the app bundle country
      • getAppBundle

        public Long getAppBundle()
        DB reference to app bundle that contains this app bundle country.
      • 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
      • isNotNullPrice

        public boolean isNotNullPrice()
        Checks whether the 'price' field is set and is not null
      • isNotNullPricePerDevice

        public boolean isNotNullPricePerDevice()
        Checks whether the 'pricePerDevice' field is set and is not null
      • isNotNullCountry

        public boolean isNotNullCountry()
        Checks whether the 'country' field is set and is not null
      • isNotNullAppBundle

        public boolean isNotNullAppBundle()
        Checks whether the 'appBundle' 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
      • hasPrice

        public boolean hasPrice()
        Checks whether the 'price' field has been set, however the value could be null
      • hasPricePerDevice

        public boolean hasPricePerDevice()
        Checks whether the 'pricePerDevice' field has been set, however the value could be null
      • hasCountry

        public boolean hasCountry()
        Checks whether the 'country' field has been set, however the value could be null
      • hasAppBundle

        public boolean hasAppBundle()
        Checks whether the 'appBundle' field has been set, however the value could be null
      • setPricePerDevice

        public AppBundleCountry setPricePerDevice​(Long pricePerDevice)
        Sets the field 'pricePerDevice'.
      • setAppBundle

        public AppBundleCountry setAppBundle​(Long appBundle)
        Sets the field 'appBundle'.
      • clearId

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

        public void clearPrice()
        Clears the 'price' field, the 'has' method for this field will now return false
      • clearPricePerDevice

        public void clearPricePerDevice()
        Clears the 'pricePerDevice' field, the 'has' method for this field will now return false
      • clearCountry

        public void clearCountry()
        Clears the 'country' field, the 'has' method for this field will now return false
      • clearAppBundle

        public void clearAppBundle()
        Clears the 'appBundle' 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 AppBundleCountry copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

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