Uses of Class
org.apache.commons.collections4.set.PredicatedSet
-
Packages that use PredicatedSet Package Description org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces. -
-
Uses of PredicatedSet in org.apache.commons.collections4.set
Subclasses of PredicatedSet in org.apache.commons.collections4.set Modifier and Type Class Description classPredicatedNavigableSet<E>Decorates anotherNavigableSetto validate that all additions match a specified predicate.classPredicatedSortedSet<E>Decorates anotherSortedSetto validate that all additions match a specified predicate.Methods in org.apache.commons.collections4.set that return PredicatedSet Modifier and Type Method Description static <E> PredicatedSet<E>PredicatedSet. predicatedSet(java.util.Set<E> set, Predicate<? super E> predicate)Factory method to create a predicated (validating) set.
-