Class GlobalSearchTextCriteria

All Implemented Interfaces:
ISearchCriteria, Serializable

@JsonObject("as.dto.global.search.GlobalSearchTextCriteria") public class GlobalSearchTextCriteria extends AbstractFieldSearchCriteria<AbstractStringValue>
See Also:
  • Constructor Details

    • GlobalSearchTextCriteria

      public GlobalSearchTextCriteria()
  • Method Details

    • thatContains

      public void thatContains(String string)
      Set the value to this criterion which is interpreted as a 'contains' match of any of the words in the phrase. The result should contain any of the specified words.
      Parameters:
      string - the phrase to be matched.
    • thatContainsExactly

      public void thatContainsExactly(String string)
      Set the value to this criterion which is interpreted as a 'contains' match of the whole phrase phrase.
      Parameters:
      string - the phrase to be matched.
    • thatMatches

      public void thatMatches(String string)
      Set the value to this criterion which is interpreted as a lexical match.
      Parameters:
      string - the phrase to be matched.
    • thatStartsWith

      public void thatStartsWith(String string)
      Set the value to this criterion which is interpreted as a lexical "starts with" match.
      Parameters:
      string - the phrase to be matched.