Uses of Class
org.fest.assertions.api.filter.Filters
Packages that use Filters
-
Uses of Filters in org.fest.assertions.api
Methods in org.fest.assertions.api that return FiltersModifier and TypeMethodDescriptionstatic <E> Filters
<E> Assertions.filter
(E[] array) Only delegate tofilter(Object[])
so that Assertions offers a full feature entry point to all Fest Assert features (but you can useFilters
if you prefer).static <E> Filters
<E> Only delegate tofilter(Object[])
so that Assertions offers a full feature entry point to all Fest Assert features (but you can useFilters
if you prefer). -
Uses of Filters in org.fest.assertions.api.filter
Methods in org.fest.assertions.api.filter that return FiltersModifier and TypeMethodDescriptionAlias ofwith(String)
for synthetic sugar to write things like :.Filter the underlying group, keeping only elements satisfying the givenCondition
.
Same ashaving(Condition)
- pick the method you prefer to have the most readable code.Filters the underlying iterable to keep object with property (specified bywith(String)
) equals to given value.static <E> Filters
<E> Filters.filter
(E[] array) Creates a new
with the array to filter.Filters
static <E> Filters
<E> Filter the underlying group, keeping only elements satisfying the givenCondition
.
Same asbeing(Condition)
- pick the method you prefer to have the most readable code.Filters the underlying iterable to keep object with property (specified bywith(String)
) equals to one of the given values.Filters.notEqualsTo
(Object propertyValue) Filters the underlying iterable to keep object with property (specified bywith(String)
) not equals to given value.Filters the underlying iterable to keep object with property (specified bywith(String)
) not in the given values.Sets the name of the property used for filtering, it may be a nested property like"adress.street.name"
.Filter the underlying group, keeping only elements with a property equals to given value.