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