Package | Description |
---|---|
org.lazywizard.lazylib |
Contains general methods that mostly help with non-API data types.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
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. |