| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see Ebean and EbeanServer).
|
| com.avaje.ebeaninternal.server.core |
Core implementation objects
|
| com.avaje.ebeaninternal.server.el |
| Modifier and Type | Method and Description |
|---|---|
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.
|
static <T> Filter<T> |
Ebean.filter(Class<T> beanType)
Create a filter for sorting and filtering lists of entities locally without
going back to the database.
|
<T> Filter<T> |
EbeanServer.filter(Class<T> beanType)
Create a filter for filtering lists of entity beans.
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
<T> Filter<T> |
DefaultServer.filter(Class<T> beanType) |
| Modifier and Type | Class and Description |
|---|---|
class |
ElFilter<T>
Default implementation of the Filter interface.
|
| Modifier and Type | Method and Description |
|---|---|
Filter<T> |
ElFilter.between(String propertyName,
Object min,
Object max) |
Filter<T> |
ElFilter.contains(String propertyName,
String value) |
Filter<T> |
ElFilter.endsWith(String propertyName,
String value) |
Filter<T> |
ElFilter.eq(String propertyName,
Object value) |
Filter<T> |
ElFilter.ge(String propertyName,
Object value) |
Filter<T> |
ElFilter.gt(String propertyName,
Object value) |
Filter<T> |
ElFilter.icontains(String propertyName,
String value) |
Filter<T> |
ElFilter.iendsWith(String propertyName,
String value) |
Filter<T> |
ElFilter.ieq(String propertyName,
String value) |
Filter<T> |
ElFilter.in(String propertyName,
Set<?> matchingValues) |
Filter<T> |
ElFilter.isNotNull(String propertyName) |
Filter<T> |
ElFilter.isNull(String propertyName) |
Filter<T> |
ElFilter.istartsWith(String propertyName,
String value) |
Filter<T> |
ElFilter.le(String propertyName,
Object value) |
Filter<T> |
ElFilter.lt(String propertyName,
Object value) |
Filter<T> |
ElFilter.maxRows(int maxRows) |
Filter<T> |
ElFilter.ne(String propertyName,
Object value) |
Filter<T> |
ElFilter.regex(String propertyName,
String regEx) |
Filter<T> |
ElFilter.regex(String propertyName,
String regEx,
int options) |
Filter<T> |
ElFilter.sort(String sortByClause) |
Filter<T> |
ElFilter.startsWith(String propertyName,
String value) |
Copyright © 2014. All Rights Reserved.