Filters<E> |
Filters.and(java.lang.String propertyName) |
Alias of with(String) for synthetic sugar to write things like :.
|
Filters<E> |
Filters.being(Condition<? super E> condition) |
Filter the underlying group, keeping only elements satisfying the given Condition .
Same as having(Condition) - pick the method you prefer to have the most readable code.
|
Filters<E> |
Filters.equalsTo(java.lang.Object propertyValue) |
Filters the underlying iterable to keep object with property (specified by with(String) ) equals to given
value.
|
static <E> Filters<E> |
Filters.filter(E[] array) |
Creates a new Filters
with the array to filter.
|
static <E> Filters<E> |
Filters.filter(java.lang.Iterable<E> iterable) |
Creates a new Filters
with the Iterable to filter.
|
Filters<E> |
Filters.having(Condition<? super E> condition) |
Filter the underlying group, keeping only elements satisfying the given Condition .
Same as being(Condition) - pick the method you prefer to have the most readable code.
|
Filters<E> |
Filters.in(java.lang.Object... propertyValues) |
Filters the underlying iterable to keep object with property (specified by with(String) ) equals to one of the
given values.
|
Filters<E> |
Filters.notEqualsTo(java.lang.Object propertyValue) |
Filters the underlying iterable to keep object with property (specified by with(String) ) not equals to given
value.
|
Filters<E> |
Filters.notIn(java.lang.Object... propertyValues) |
Filters the underlying iterable to keep object with property (specified by with(String) ) not in the given
values.
|
Filters<E> |
Filters.with(java.lang.String propertyName) |
Sets the name of the property used for filtering, it may be a nested property like "adress.street.name" .
|
Filters<E> |
Filters.with(java.lang.String propertyName,
java.lang.Object propertyValue) |
Filter the underlying group, keeping only elements with a property equals to given value.
|