Uses of Class
org.apache.commons.functor.core.collection.FilteredIterable
-
Packages that use FilteredIterable Package Description org.apache.commons.functor.core.collection Collection-based functors, algorithms and utilities. -
-
Uses of FilteredIterable in org.apache.commons.functor.core.collection
Fields in org.apache.commons.functor.core.collection declared as FilteredIterable Modifier and Type Field Description private static FilteredIterableFilteredIterable. EMPTYA defaultFilteredIterablestatic instance that iterates over an empty collection.Methods in org.apache.commons.functor.core.collection that return FilteredIterable Modifier and Type Method Description static <T> FilteredIterable<T>FilteredIterable. empty()Get an empty FilteredIterable.static <T> FilteredIterable<T>FilteredIterable. of(java.lang.Iterable<T> iterable)Get aFilteredIterableofiterable.FilteredIterable<T>FilteredIterable. retain(java.lang.Class<?>... ofType)Retain elements of any of specified types.<U> FilteredIterable<U>FilteredIterable. retain(java.lang.Class<U> type)Retain elements of a given type with type-safety.FilteredIterable<T>FilteredIterable. retain(UnaryPredicate<? super T> predicate)Retain only elements matchingpredicate.
-