Uses of Class
org.apache.commons.collections4.collection.PredicatedCollection
-
Packages that use PredicatedCollection Package Description org.apache.commons.collections4.bag org.apache.commons.collections4.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.multiset This package contains implementations of theMultiSetinterface.org.apache.commons.collections4.queue This package contains implementations for theQueueinterface.org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces. -
-
Uses of PredicatedCollection in org.apache.commons.collections4.bag
Subclasses of PredicatedCollection in org.apache.commons.collections4.bag Modifier and Type Class Description classPredicatedBag<E>Decorates anotherBagto validate that additions match a specified predicate.classPredicatedSortedBag<E>Decorates anotherSortedBagto validate that additions match a specified predicate. -
Uses of PredicatedCollection in org.apache.commons.collections4.collection
Methods in org.apache.commons.collections4.collection that return PredicatedCollection Modifier and Type Method Description static <T> PredicatedCollection<T>PredicatedCollection. predicatedCollection(java.util.Collection<T> coll, Predicate<? super T> predicate)Factory method to create a predicated (validating) collection. -
Uses of PredicatedCollection in org.apache.commons.collections4.list
Subclasses of PredicatedCollection in org.apache.commons.collections4.list Modifier and Type Class Description classPredicatedList<E>Decorates anotherListto validate that all additions match a specified predicate. -
Uses of PredicatedCollection in org.apache.commons.collections4.multiset
Subclasses of PredicatedCollection in org.apache.commons.collections4.multiset Modifier and Type Class Description classPredicatedMultiSet<E>Decorates anotherMultiSetto validate that additions match a specified predicate. -
Uses of PredicatedCollection in org.apache.commons.collections4.queue
Subclasses of PredicatedCollection in org.apache.commons.collections4.queue Modifier and Type Class Description classPredicatedQueue<E>Decorates anotherQueueto validate that additions match a specified predicate. -
Uses of PredicatedCollection in org.apache.commons.collections4.set
Subclasses of PredicatedCollection in org.apache.commons.collections4.set Modifier and Type Class Description classPredicatedNavigableSet<E>Decorates anotherNavigableSetto validate that all additions match a specified predicate.classPredicatedSet<E>Decorates anotherSetto validate that all additions match a specified predicate.classPredicatedSortedSet<E>Decorates anotherSortedSetto validate that all additions match a specified predicate.
-