public interface FieldEnd<T>
Modifier and Type | Method and Description |
---|---|
T |
contains(String string) |
T |
containsIgnoreCase(String suffix) |
T |
doesNotExist() |
T |
endsWith(String suffix) |
T |
endsWithIgnoreCase(String suffix) |
T |
equal(Object val) |
T |
exists() |
T |
greaterThan(Object val) |
T |
greaterThanOrEq(Object val) |
T |
hasAllOf(Iterable<?> values) |
T |
hasAnyOf(Iterable<?> values) |
T |
hasNoneOf(Iterable<?> values) |
T |
hasThisElement(Object val) |
T |
hasThisOne(Object val) |
T |
in(Iterable<?> values) |
T |
lessThan(Object val) |
T |
lessThanOrEq(Object val) |
T |
mod(long divisor,
long remainder) |
T |
near(double x,
double y) |
T |
near(double x,
double y,
boolean spherical) |
T |
near(double x,
double y,
double radius) |
T |
near(double x,
double y,
double radius,
boolean spherical) |
FieldEnd<T> |
not() |
T |
notEqual(Object val) |
T |
notIn(Iterable<?> values) |
T |
sizeEq(int val) |
T |
startsWith(String prefix) |
T |
startsWithIgnoreCase(String prefix) |
T |
within(double x,
double y,
double radius)
Deprecated.
In version 2.4: $geoWithin replaces $within which is deprecated.
|
T |
within(double x,
double y,
double radius,
boolean spherical)
Deprecated.
In version 2.4: $geoWithin replaces $within which is deprecated.
|
T |
within(double x1,
double y1,
double x2,
double y2)
Deprecated.
In version 2.4: $geoWithin replaces $within which is deprecated.
|
T |
within(Shape shape)
This implements the $geoWithin operator and is only compatible with mongo 2.4 or greater.
|
T doesNotExist()
T exists()
T mod(long divisor, long remainder)
T near(double x, double y)
T near(double x, double y, boolean spherical)
T near(double x, double y, double radius)
T near(double x, double y, double radius, boolean spherical)
T sizeEq(int val)
T within(Shape shape)
T within(double x, double y, double radius)
T within(double x1, double y1, double x2, double y2)
Copyright © 2013. All Rights Reserved.