Skip to main content

Class FilterByStringRequest.Mode

java.lang.Object
com.gpudb.protocol.FilterByStringRequest.Mode
Enclosing class:

public static final class FilterByStringRequest.Mode extends Object
A set of string constants for the FilterByStringRequest parameter mode.

The string filtering mode to apply. See below for details.

  • Field Details

    • EQUALS

      public static final String EQUALS
      Exact whole-string match (accelerated).
    • 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.
    • 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.
    • 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.