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 theCollection
interface.org.apache.commons.collections4.list This package contains implementations of theList
interface.org.apache.commons.collections4.multiset This package contains implementations of theMultiSet
interface.org.apache.commons.collections4.queue This package contains implementations for theQueue
interface.org.apache.commons.collections4.set -
-
Uses of PredicatedCollection in org.apache.commons.collections4.bag
Subclasses of PredicatedCollection in org.apache.commons.collections4.bag Modifier and Type Class Description class
PredicatedBag<E>
Decorates anotherBag
to validate that additions match a specified predicate.class
PredicatedSortedBag<E>
Decorates anotherSortedBag
to 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(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 class
PredicatedList<E>
Decorates anotherList
to 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 class
PredicatedMultiSet<E>
Decorates anotherMultiSet
to 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 class
PredicatedQueue<E>
Decorates anotherQueue
to 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 class
PredicatedNavigableSet<E>
Decorates anotherNavigableSet
to validate that all additions match a specified predicate.class
PredicatedSet<E>
Decorates anotherSet
to validate that all additions match a specified predicate.class
PredicatedSortedSet<E>
Decorates anotherSortedSet
to validate that all additions match a specified predicate.
-