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 ExpressionStdOperators.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> ExpressionStdOperators.eq(Query.Property<T> property, Query<?> subQuery) Equal to - for a property and sub-query.static <T> ExpressionStdOperators.eq(Query.Property<T> property, T value) Equal to - for a property and value.static <T> ExpressionStdOperators.eqOrNull(Query.Property<T> property, T value) Equal to or null - for a property and value.static <T> ExpressionStdOperators.ge(Query.Property<T> property, Query<?> subQuery) Greater than or equal to - for a property and sub-query.static <T> ExpressionStdOperators.ge(Query.Property<T> property, T value) Greater than or equal to - for a property and value.static <T> ExpressionStdOperators.geOrNull(Query.Property<T> property, T value) Greater than or null - for a property and value.static <T> ExpressionStdOperators.gt(Query.Property<T> property, Query<?> subQuery) Greater than - for a property and sub-query.static <T> ExpressionStdOperators.gt(Query.Property<T> property, T value) Greater than - for a property and value.static <T> ExpressionStdOperators.gtOrNull(Query.Property<T> property, T value) Greater than or null - for a property and value.static ExpressionStdOperators.icontains(Query.Property<String> property, String value) Case-insensitive contains - for a given property and value.static ExpressionStdOperators.ilike(Query.Property<String> property, String value) Case-insensitive Like - for a given property and value.static <T> ExpressionStdOperators.in(Query.Property<T> property, Query<?> subQuery) In - for a given property and sub-query.static <T> ExpressionStdOperators.in(Query.Property<T> property, Collection<T> value) In - for a given property and collection of values.static <T> ExpressionStdOperators.inOrEmpty(Query.Property<T> property, Collection<T> value) In or empty - for a given property and collection of values.static <T> ExpressionStdOperators.inRange(Query.Property<T> lowProperty, Query.Property<T> property, Query.Property<T> highProperty) In range - for properties.static <T> ExpressionStdOperators.inRange(Query.Property<T> lowProperty, Query.Property<T> highProperty, T value) In range - for properties and a value.static <T> ExpressionStdOperators.inRange(Query.Property<T> property, T lowValue, T highValue) In range - for a property and values.static ExpressionStdOperators.istartsWith(Query.Property<String> property, String value) Case-insensitive starts with - for a given property and value.static <T> ExpressionStdOperators.le(Query.Property<T> property, Query<?> subQuery) Greater than or equal to - for a property and sub-query.static <T> ExpressionStdOperators.le(Query.Property<T> property, T value) Greater than or equal to - for a property and value.static <T> ExpressionStdOperators.leOrNull(Query.Property<T> property, T value) Greater than or equal to or null - for a property and value.static ExpressionStdOperators.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> ExpressionStdOperators.lt(Query.Property<T> property, Query<?> subQuery) Less than - for a property and sub-query.static <T> ExpressionStdOperators.lt(Query.Property<T> property, T value) Less than - for a property and value.static <T> ExpressionStdOperators.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> ExpressionStdOperators.ne(Query.Property<T> property, Query<?> subQuery) Not equal to - for a property and sub-query.static <T> ExpressionStdOperators.ne(Query.Property<T> property, T value) Not equal to - for a property and value.static <T> ExpressionStdOperators.notIn(Query.Property<T> property, Query<?> subQuery) Not In - for a given property and sub-query.static <T> ExpressionStdOperators.notIn(Query.Property<T> property, Collection<T> value) Not In - for a given property and collection of values.static InTuplesInTuples.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 ExpressionStdOperators.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.