Class CacheIndex

    • Constructor Detail

      • CacheIndex

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

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

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

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

      • getCacheName

        public String getCacheName()
        Name of a Memcached cache.
      • getIndex

        public Integer getIndex()
        Index that is incremented when a cache is invalidated and forms part of the key used for entries stored in the cache.
      • 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
      • isNotNullCacheName

        public boolean isNotNullCacheName()
        Checks whether the 'cache_name' field is set and is not null
      • isNotNullIndex

        public boolean isNotNullIndex()
        Checks whether the 'index' field is set and is not null
      • hasCacheName

        public boolean hasCacheName()
        Checks whether the 'cache_name' field has been set, however the value could be null
      • hasIndex

        public boolean hasIndex()
        Checks whether the 'index' field has been set, however the value could be null
      • setCacheName

        public CacheIndex setCacheName​(String cache_name)
        Sets the field 'cache_name'.
      • clearCacheName

        public void clearCacheName()
        Clears the 'cache_name' field, the 'has' method for this field will now return false
      • clearIndex

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

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