Class GlobalSearchTextCriteria

    • Constructor Detail

      • GlobalSearchTextCriteria

        public GlobalSearchTextCriteria()
    • Method Detail

      • thatContains

        public void thatContains​(java.lang.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​(java.lang.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​(java.lang.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​(java.lang.String string)
        Set the value to this criterion which is interpreted as a lexical "starts with" match.
        Parameters:
        string - the phrase to be matched.