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) 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 Query.Property<Number>StdOperators.count(Query.Property<?> property) Deprecated.Count of the given property.static Query.Property<String>StdOperators.lower(Query.Property<String> property) Deprecated.Lower of the given property.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> Query.Property<T>Return a property given the expression.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.Methods in io.ebean with parameters of type Query.PropertyModifier and TypeMethodDescriptionstatic <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 ExpressionStdOperators.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> ExpressionStdOperators.eq(Query.Property<T> property, Query<?> subQuery) Deprecated.Equal to - for a property and sub-query.static <T> ExpressionStdOperators.eq(Query.Property<T> property, T value) Deprecated.Equal to - for a property and value.static <T> ExpressionStdOperators.eqOrNull(Query.Property<T> property, T value) Deprecated.Equal to or null - for a property and value.static <T> ExpressionStdOperators.ge(Query.Property<T> property, Query<?> subQuery) Deprecated.Greater than or equal to - for a property and sub-query.static <T> ExpressionStdOperators.ge(Query.Property<T> property, T value) Deprecated.Greater than or equal to - for a property and value.static <T> ExpressionStdOperators.geOrNull(Query.Property<T> property, T value) Deprecated.Greater than or null - for a property and value.static <T> ExpressionStdOperators.gt(Query.Property<T> property, Query<?> subQuery) Deprecated.Greater than - for a property and sub-query.static <T> ExpressionStdOperators.gt(Query.Property<T> property, T value) Deprecated.Greater than - for a property and value.static <T> ExpressionStdOperators.gtOrNull(Query.Property<T> property, T value) Deprecated.Greater than or null - for a property and value.static ExpressionStdOperators.icontains(Query.Property<String> property, String value) Deprecated.Case-insensitive contains - for a given property and value.static ExpressionStdOperators.ilike(Query.Property<String> property, String value) Deprecated.Case-insensitive Like - for a given property and value.static <T> ExpressionStdOperators.in(Query.Property<T> property, Query<?> subQuery) Deprecated.In - for a given property and sub-query.static <T> ExpressionStdOperators.in(Query.Property<T> property, Collection<T> value) Deprecated.In - for a given property and collection of values.static <T> ExpressionStdOperators.inOrEmpty(Query.Property<T> property, Collection<T> value) Deprecated.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) Deprecated.In range - for properties.static <T> ExpressionStdOperators.inRange(Query.Property<T> lowProperty, Query.Property<T> highProperty, T value) Deprecated.In range - for properties and a value.static <T> ExpressionStdOperators.inRange(Query.Property<T> property, T lowValue, T highValue) Deprecated.In range - for a property and values.static ExpressionStdOperators.istartsWith(Query.Property<String> property, String value) Deprecated.Case-insensitive starts with - for a given property and value.static <T> ExpressionStdOperators.le(Query.Property<T> property, Query<?> subQuery) Deprecated.Greater than or equal to - for a property and sub-query.static <T> ExpressionStdOperators.le(Query.Property<T> property, T value) Deprecated.Greater than or equal to - for a property and value.static <T> ExpressionStdOperators.leOrNull(Query.Property<T> property, T value) Deprecated.Greater than or equal to or null - for a property and value.static ExpressionStdOperators.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> ExpressionStdOperators.lt(Query.Property<T> property, Query<?> subQuery) Deprecated.Less than - for a property and sub-query.static <T> ExpressionStdOperators.lt(Query.Property<T> property, T value) Deprecated.Less than - for a property and value.static <T> ExpressionStdOperators.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> ExpressionStdOperators.ne(Query.Property<T> property, Query<?> subQuery) Deprecated.Not equal to - for a property and sub-query.static <T> ExpressionStdOperators.ne(Query.Property<T> property, T value) Deprecated.Not equal to - for a property and value.static <T> ExpressionStdOperators.notIn(Query.Property<T> property, Query<?> subQuery) Deprecated.Not In - for a given property and sub-query.static <T> ExpressionStdOperators.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.setNull(Query.Property<?> property) Set the property to be null.static ExpressionStdOperators.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.