LazyLib

Uses of Interface
org.lazywizard.lazylib.CollectionUtils.CollectionFilter

Packages that use CollectionUtils.CollectionFilter
org.lazywizard.lazylib Contains general methods that mostly help with non-API data types. 
 

Uses of CollectionUtils.CollectionFilter in org.lazywizard.lazylib
 

Methods in org.lazywizard.lazylib with parameters of type CollectionUtils.CollectionFilter
static
<T> List<T>
CollectionUtils.filter(Collection<T> toFilter, CollectionUtils.CollectionFilter<T> filter)
          Filters a Collection and returns a List containing only the entries that the filter accepted.
 

Method parameters in org.lazywizard.lazylib with type arguments of type CollectionUtils.CollectionFilter
static
<T> List<T>
CollectionUtils.filter(Collection<T> toFilter, List<CollectionUtils.CollectionFilter<T>> filters)
          Filters a Collection and returns a List containing only the entries that the filters accepted.
 


LazyLib