|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Filters | |
---|---|
org.fest.assertions.api | |
org.fest.assertions.api.filter |
Uses of Filters in org.fest.assertions.api |
---|
Methods in org.fest.assertions.api that return Filters | ||
---|---|---|
static
|
Assertions.filter(E[] array)
Only delegate to filter(Object[]) so that Assertions offers a full feature entry point to all Fest
Assert features (but you can use Filters if you prefer). |
|
static
|
Assertions.filter(Iterable<E> iterableToFilter)
Only delegate to filter(Object[]) so that Assertions offers a full feature entry point to all Fest
Assert features (but you can use Filters if you prefer). |
Uses of Filters in org.fest.assertions.api.filter |
---|
Methods in org.fest.assertions.api.filter that return Filters | ||
---|---|---|
Filters<E> |
Filters.and(String propertyName)
Alias of with(String) for synthetic sugar to write things like :. |
|
Filters<E> |
Filters.being(Condition<E> condition)
Filter the underlying group, keeping only elements satisfying the given Condition . |
|
Filters<E> |
Filters.equalsTo(Object propertyValue)
Filters the underlying iterable to keep object with property (specified by with(String) ) equals to
given value. |
|
static
|
Filters.filter(E[] array)
Creates a new with the array to filter. |
|
static
|
Filters.filter(Iterable<E> iterable)
Creates a new with the Iterable to filter. |
|
Filters<E> |
Filters.having(Condition<E> condition)
Filter the underlying group, keeping only elements satisfying the given Condition . |
|
Filters<E> |
Filters.in(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(Object propertyValue)
Filters the underlying iterable to keep object with property (specified by with(String) ) not equals
to given value. |
|
Filters<E> |
Filters.notIn(Object... propertyValues)
Filters the underlying iterable to keep object with property (specified by with(String) ) not in the
given values. |
|
Filters<E> |
Filters.with(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(String propertyName,
Object propertyValue)
Filter the underlying group, keeping only elements with a property equals to given value. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |