Filter<T> |
Filter.between(String propertyName,
Object value1,
Object value2) |
Between - property between the two given values.
|
Filter<T> |
Filter.contains(String propertyName,
String value) |
Contains - property contains the string "value".
|
Filter<T> |
Filter.endsWith(String propertyName,
String value) |
Ends With.
|
Filter<T> |
Filter.eq(String prop,
Object value) |
Equal To - property equal to the given value.
|
<T> Filter<T> |
Database.filter(Class<T> beanType) |
Create a filter for sorting and filtering lists of entities locally without
going back to the database.
|
static <T> Filter<T> |
DB.filter(Class<T> beanType) |
Create a filter for sorting and filtering lists of entities locally without
going back to the database.
|
static <T> Filter<T> |
Ebean.filter(Class<T> beanType) |
Deprecated.
Create a filter for sorting and filtering lists of entities locally without
going back to the database.
|
Filter<T> |
Filter.ge(String propertyName,
Object value) |
Greater Than or Equal to - property greater than or equal to the given
value.
|
Filter<T> |
Filter.gt(String propertyName,
Object value) |
Greater Than - property greater than the given value.
|
Filter<T> |
Filter.icontains(String propertyName,
String value) |
Case insensitive Contains.
|
Filter<T> |
Filter.iendsWith(String propertyName,
String value) |
Case insensitive Ends With.
|
Filter<T> |
Filter.ieq(String propertyName,
String value) |
Case Insensitive Equal To.
|
Filter<T> |
Filter.in(String propertyName,
Set<?> values) |
In - property has a value contained in the set of values.
|
Filter<T> |
Filter.isNotNull(String propertyName) |
Is Not Null - property is not null.
|
Filter<T> |
Filter.isNull(String propertyName) |
Is Null - property is null.
|
Filter<T> |
Filter.istartsWith(String propertyName,
String value) |
Case insensitive Starts With.
|
Filter<T> |
Filter.le(String propertyName,
Object value) |
Less Than or Equal to - property less than or equal to the given value.
|
Filter<T> |
Filter.lt(String propertyName,
Object value) |
Less Than - property less than the given value.
|
Filter<T> |
Filter.maxRows(int maxRows) |
Specify the maximum number of rows/elements to return.
|
Filter<T> |
Filter.ne(String propertyName,
Object value) |
Not Equal To - property not equal to the given value.
|
Filter<T> |
Filter.sort(String sortByClause) |
Specify a sortByClause.
|
Filter<T> |
Filter.startsWith(String propertyName,
String value) |
Starts With.
|