NitriteFilter |
FluentFilter.between(Comparable<?> lowerBound,
Comparable<?> upperBound) |
Creates a filter that matches documents where the value of the field is
between the specified lower and upper bounds.
|
NitriteFilter |
FluentFilter.between(Comparable<?> lowerBound,
Comparable<?> upperBound,
boolean inclusive) |
Creates a filter that matches documents where the value of the field is
between the given lower and upper bounds.
|
NitriteFilter |
FluentFilter.between(Comparable<?> lowerBound,
Comparable<?> upperBound,
boolean lowerInclusive,
boolean upperInclusive) |
Creates a filter that matches documents where the value of a field is
between two specified values.
|
NitriteFilter |
FluentFilter.elemMatch(Filter filter) |
Creates a filter that matches documents where the value of a field contains at least one element that matches the
specified filter.
|
NitriteFilter |
FluentFilter.eq(Object value) |
Creates an equality filter that matches documents where the value of a
field equals the specified value.
|
NitriteFilter |
FluentFilter.gt(Comparable<?> value) |
Creates a filter that matches all documents where the value of
the specified field is greater than the given value.
|
NitriteFilter |
FluentFilter.gte(Comparable<?> value) |
Creates a filter that matches documents where the value of the
field is greater than or equal to the specified value.
|
NitriteFilter |
FluentFilter.in(Comparable<?>... values) |
Creates a filter that matches documents where the value of the field is in the specified array of values.
|
NitriteFilter |
FluentFilter.lt(Comparable<?> value) |
Creates a filter that matches documents where the value of the
field is less than the specified value.
|
NitriteFilter |
FluentFilter.lte(Comparable<?> value) |
Creates a filter that matches documents where the value of the
field is less than or equal to the specified value.
|
NitriteFilter |
FluentFilter.notEq(Object value) |
Creates a filter that matches all documents where the value of
the specified field is not equal to the given value.
|
NitriteFilter |
FluentFilter.notIn(Comparable<?>... values) |
Creates a filter that matches documents where the value of the field is not in the specified array of values.
|
NitriteFilter |
FluentFilter.regex(String value) |
Creates a filter that matches documents where the value of the specified field matches the
specified regular expression pattern.
|
NitriteFilter |
FluentFilter.text(String value) |
Creates a filter which performs a text search on the content of the fields
indexed with a full-text index.
|