static <T> Query.Property<T> |
StdOperators.avg(Query.Property<T> property) |
Deprecated.
Average of the given property.
|
static <T> Query.Property<T> |
StdOperators.coalesce(Query.Property<T> property,
Object value) |
Deprecated.
Coalesce of the property and value.
|
static Query.Property<String> |
StdOperators.concat(Query.Property<?> property,
Object... values) |
Deprecated.
Concat of the given property and values or other properties.
|
static Expression |
StdOperators.contains(Query.Property<String> property,
String value) |
Deprecated.
Contains - for a given property and value.
|
static Query.Property<Number> |
StdOperators.count(Query.Property<?> property) |
Deprecated.
Count of the given property.
|
static <T> Expression |
StdOperators.eq(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Equal to - for a property and sub-query.
|
static <T> Expression |
StdOperators.eq(Query.Property<T> property,
T value) |
Deprecated.
Equal to - for a property and value.
|
static <T> Expression |
StdOperators.eqOrNull(Query.Property<T> property,
T value) |
Deprecated.
Equal to or null - for a property and value.
|
static <T> Expression |
StdOperators.ge(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Greater than or equal to - for a property and sub-query.
|
static <T> Expression |
StdOperators.ge(Query.Property<T> property,
T value) |
Deprecated.
Greater than or equal to - for a property and value.
|
static <T> Expression |
StdOperators.geOrNull(Query.Property<T> property,
T value) |
Deprecated.
Greater than or null - for a property and value.
|
static <T> Expression |
StdOperators.gt(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Greater than - for a property and sub-query.
|
static <T> Expression |
StdOperators.gt(Query.Property<T> property,
T value) |
Deprecated.
Greater than - for a property and value.
|
static <T> Expression |
StdOperators.gtOrNull(Query.Property<T> property,
T value) |
Deprecated.
Greater than or null - for a property and value.
|
static Expression |
StdOperators.icontains(Query.Property<String> property,
String value) |
Deprecated.
Case-insensitive contains - for a given property and value.
|
static Expression |
StdOperators.ilike(Query.Property<String> property,
String value) |
Deprecated.
Case-insensitive Like - for a given property and value.
|
static <T> Expression |
StdOperators.in(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
In - for a given property and sub-query.
|
static <T> Expression |
StdOperators.in(Query.Property<T> property,
Collection<T> value) |
Deprecated.
In - for a given property and collection of values.
|
static <T> Expression |
StdOperators.inOrEmpty(Query.Property<T> property,
Collection<T> value) |
Deprecated.
In or empty - for a given property and collection of values.
|
static <T> Expression |
StdOperators.inRange(Query.Property<T> lowProperty,
Query.Property<T> property,
Query.Property<T> highProperty) |
Deprecated.
In range - for properties.
|
static <T> Expression |
StdOperators.inRange(Query.Property<T> lowProperty,
Query.Property<T> highProperty,
T value) |
Deprecated.
In range - for properties and a value.
|
static <T> Expression |
StdOperators.inRange(Query.Property<T> property,
T lowValue,
T highValue) |
Deprecated.
In range - for a property and values.
|
static Expression |
StdOperators.istartsWith(Query.Property<String> property,
String value) |
Deprecated.
Case-insensitive starts with - for a given property and value.
|
static <T> Expression |
StdOperators.le(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Greater than or equal to - for a property and sub-query.
|
static <T> Expression |
StdOperators.le(Query.Property<T> property,
T value) |
Deprecated.
Greater than or equal to - for a property and value.
|
static <T> Expression |
StdOperators.leOrNull(Query.Property<T> property,
T value) |
Deprecated.
Greater than or equal to or null - for a property and value.
|
static Expression |
StdOperators.like(Query.Property<String> property,
String value) |
Deprecated.
Like - for a given property and value.
|
static Query.Property<String> |
StdOperators.lower(Query.Property<String> property) |
Deprecated.
Lower of the given property.
|
static <T> Expression |
StdOperators.lt(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Less than - for a property and sub-query.
|
static <T> Expression |
StdOperators.lt(Query.Property<T> property,
T value) |
Deprecated.
Less than - for a property and value.
|
static <T> Expression |
StdOperators.ltOrNull(Query.Property<T> property,
T value) |
Deprecated.
Less than or null - for a property and value.
|
static <T> Query.Property<T> |
StdOperators.max(Query.Property<T> property) |
Deprecated.
Max of the given property.
|
static <T> Query.Property<T> |
StdOperators.min(Query.Property<T> property) |
Deprecated.
Min of the given property.
|
static <T> Expression |
StdOperators.ne(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Not equal to - for a property and sub-query.
|
static <T> Expression |
StdOperators.ne(Query.Property<T> property,
T value) |
Deprecated.
Not equal to - for a property and value.
|
static <T> Expression |
StdOperators.notIn(Query.Property<T> property,
Query<?> subQuery) |
Deprecated.
Not In - for a given property and sub-query.
|
static <T> Expression |
StdOperators.notIn(Query.Property<T> property,
Collection<T> value) |
Deprecated.
Not In - for a given property and collection of values.
|
<P> UpdateQuery<T> |
UpdateQuery.set(Query.Property<P> property,
P value) |
Set the value of a property.
|
UpdateQuery<T> |
UpdateQuery.setNull(Query.Property<?> property) |
Set the property to be null.
|
static Expression |
StdOperators.startsWith(Query.Property<String> property,
String value) |
Deprecated.
Starts with - for a given property and value.
|
static Query.Property<Number> |
StdOperators.sum(Query.Property<? extends Number> property) |
Deprecated.
Sum of the given property.
|
static Query.Property<String> |
StdOperators.upper(Query.Property<String> property) |
Deprecated.
Upper of the given property.
|