Class SuggesterGroupDescriptor

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected String name  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected boolean append​(String suggesterName, String newSuggesterName, boolean before)
      Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just before (if before is true) or after the suggester named suggesterName in the #suggesters list.
      protected boolean appendAfter​(String suggesterName, String newSuggesterName)
      Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just after the suggester named suggesterName in the #suggesters list.
      protected boolean appendBefore​(String suggesterName, String newSuggesterName)
      Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just before the suggester named suggesterName in the #suggesters list.
      Object clone()  
      String getName()  
      List<SuggesterGroupItemDescriptor> getSuggesters()  
      protected int indexOf​(String suggesterName)
      Returns the index of the first occurrence of the element named suggesterName in the #suggesters list, or -1 if suggesterName is null or if this list does not contain the element.
      protected void logExistingSuggesterName​(String newSuggesterName)
      Logs that the suggester named newSuggesterName already exists in the #suggesters list and therefore won't be appended to it.
      void mergeFrom​(SuggesterGroupDescriptor newDescriptor)  
      protected boolean remove​(String suggesterName)
      Removes the suggester named suggesterName from the #suggesters list.
    • Method Detail

      • remove

        protected boolean remove​(String suggesterName)
        Removes the suggester named suggesterName from the #suggesters list.
        Parameters:
        suggesterName - the suggester name
        Returns:
        true, if a suggester was removed
      • indexOf

        protected int indexOf​(String suggesterName)
        Returns the index of the first occurrence of the element named suggesterName in the #suggesters list, or -1 if suggesterName is null or if this list does not contain the element.
        Parameters:
        suggesterName - the suggester name
        Returns:
        the index of the first occurrence of the element named suggesterName in the #suggesters list, or -1 if suggesterName is null or if this list does not contain the element
      • appendBefore

        protected boolean appendBefore​(String suggesterName,
                                       String newSuggesterName)
        Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just before the suggester named suggesterName in the #suggesters list. If the suggester named suggesterName does not exist, appends the new suggester at the beginning of the list.
        Parameters:
        suggesterName - the suggester name
        newSuggesterName - the name of the suggester to append
        Returns:
        true, if the suggester named newSuggesterName was appended to the #suggesters list
      • appendAfter

        protected boolean appendAfter​(String suggesterName,
                                      String newSuggesterName)
        Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just after the suggester named suggesterName in the #suggesters list. If the suggester named suggesterName does not exist, appends the new suggester at the end of the list.
        Parameters:
        suggesterName - the suggester name
        newSuggesterName - the name of the suggester to append
        Returns:
        true, if the suggester named newSuggesterName was appended to the #suggesters list
      • append

        protected boolean append​(String suggesterName,
                                 String newSuggesterName,
                                 boolean before)
        Unless a suggester named newSuggesterName already exists in the #suggesters list, appends a new SuggesterGroupItemDescriptor named newSuggesterName just before (if before is true) or after the suggester named suggesterName in the #suggesters list. If the suggester named suggesterName does not exist, appends the new suggester at the beginning or the end of the list, depending on before.
        Parameters:
        suggesterName - the suggester name
        newSuggesterName - the name of the suggester to append
        Returns:
        true, if the suggester named newSuggesterName was appended to the #suggesters list
      • logExistingSuggesterName

        protected void logExistingSuggesterName​(String newSuggesterName)
        Logs that the suggester named newSuggesterName already exists in the #suggesters list and therefore won't be appended to it.
        Parameters:
        newSuggesterName - the new suggester name