public static final class FilterByStringRequest.Mode extends Object
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.
EQUALS
: Exact whole-string match (accelerated).
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
:
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
: 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.
mode
.Modifier and Type | Field and Description |
---|---|
static String |
CONTAINS
Partial substring match (not accelerated).
|
static String |
EQUALS
Exact whole-string match (accelerated).
|
static String |
REGEX
Full regular expression search (not accelerated).
|
static String |
SEARCH
Full text search query with wildcards and boolean operators.
|
static String |
STARTS_WITH
Strings that start with the given expression (not accelerated).
|
public static final String SEARCH
columnNames
; all string columns of the table that have text search
enabled will be searched.public static final String EQUALS
public static final String CONTAINS
public static final String STARTS_WITH
public static final String REGEX
Copyright © 2020. All rights reserved.