Class FilterByStringRequest.Mode

    • Field Detail

      • SEARCH

        public static final String SEARCH
        Full text search query with wildcards and boolean operators. Note that for this mode, no column can be specified in columnNames; all string columns of the table that have text search enabled will be searched.
        See Also:
        Constant Field Values
      • CONTAINS

        public static final String CONTAINS
        Partial substring match (not accelerated). If the column is a string type (non-charN) and the number of records is too large, it will return 0.
        See Also:
        Constant Field Values
      • STARTS_WITH

        public static final String STARTS_WITH
        Strings that start with the given expression (not accelerated). If the column is a string type (non-charN) and the number of records is too large, it will return 0.
        See Also:
        Constant Field Values
      • REGEX

        public static final String REGEX
        Full regular expression search (not accelerated). If the column is a string type (non-charN) and the number of records is too large, it will return 0.
        See Also:
        Constant Field Values