Class AppSuggestRecord

    • Constructor Detail

      • AppSuggestRecord

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

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

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

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

      • getHighlight

        public Map<String,​String> getHighlight()
        The app attribute that matched, mapped to the matching text.
      • getScore

        public Double getScore()
        Relevancy score.
      • 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
      • isNotNullApp

        public boolean isNotNullApp()
        Checks whether the 'app' field is set and is not null
      • isNotNullHighlight

        public boolean isNotNullHighlight()
        Checks whether the 'highlight' field is set and is not null
      • isNotEmptyHighlight

        public boolean isNotEmptyHighlight()
        Checks whether the 'highlight' field is set and is not null and is not empty
      • isNotNullScore

        public boolean isNotNullScore()
        Checks whether the 'score' field is set and is not null
      • hasApp

        public boolean hasApp()
        Checks whether the 'app' field has been set, however the value could be null
      • hasHighlight

        public boolean hasHighlight()
        Checks whether the 'highlight' field has been set, however the value could be null
      • hasScore

        public boolean hasScore()
        Checks whether the 'score' field has been set, however the value could be null
      • setApp

        public AppSuggestRecord setApp​(Reference app)
        Sets the field 'app'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • clearApp

        public void clearApp()
        Clears the 'app' field, the 'has' method for this field will now return false
      • clearHighlight

        public void clearHighlight()
        Clears the 'highlight' field, the 'has' method for this field will now return false
      • clearScore

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

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