|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.entityfs.util.EntityFilters
public final class EntityFilters
This is a utility class with static methods for working with Filter
:s
for EntityView
:s.
Filter
Method Summary | |
---|---|
static Collection<EntityView> |
filterCollection(Collection<? extends EntityView> c,
Filter<? super EntityView> f)
Filter the elements in the provided Collection through the filter
and return all entities that pass it. |
static List<EntityView> |
filterList(List<? extends EntityView> l,
Filter<? super EntityView> f)
Filter the elements in the provided List through the filter and
return all entities that pass it. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static Collection<EntityView> filterCollection(Collection<? extends EntityView> c, Filter<? super EntityView> f)
Collection
through the filter
and return all entities that pass it.
c
- The collection of entities.f
- The filter.
public static List<EntityView> filterList(List<? extends EntityView> l, Filter<? super EntityView> f)
List
through the filter and
return all entities that pass it.
l
- The list of entities.f
- The filter.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |