RegexFilter |
RegexFilter.caseInsensitive() |
Case insensitivity to match upper and lower cases.
|
RegexFilter |
RegexFilter.extended() |
“Extended” capability to ignore all white space characters in the $regex pattern unless escaped or included in a character class.
|
RegexFilter |
RegexFilter.multiline() |
For patterns that include anchors (i.e. ^ for the start, $ for the end), match at the beginning or end of each line for strings
with multiline values.
|
RegexFilter |
RegexFilter.options(String options) |
Optional options to apply to the regex
|
RegexFilter |
RegexFilter.pattern(String pattern) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
RegexFilter |
RegexFilter.pattern(Pattern pattern) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
static RegexFilter |
Filters.regex(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
static RegexFilter |
Filters.regex(String field,
String pattern) |
Selects documents where values match a specified regular expression.
|
static RegexFilter |
Filters.regex(String field,
Pattern pattern) |
Selects documents where values match a specified regular expression.
|
RegexFilter |
RegexFilter.special() |
Allows the dot character (i.e.
|