Uses of Class
org.apache.commons.collections4.collection.PredicatedCollection

Packages that use PredicatedCollection
org.apache.commons.collections4.bag This package contains implementations of the Bag and SortedBag interfaces. 
org.apache.commons.collections4.collection This package contains implementations of the Collection interface. 
org.apache.commons.collections4.list This package contains implementations of the List interface. 
org.apache.commons.collections4.queue This package contains implementations for the Queue interface. 
org.apache.commons.collections4.set This package contains implementations of the Set and SortedSet interfaces. 
 

Uses of PredicatedCollection in org.apache.commons.collections4.bag
 

Subclasses of PredicatedCollection in org.apache.commons.collections4.bag
 class PredicatedBag<E>
          Decorates another Bag to validate that additions match a specified predicate.
 class PredicatedSortedBag<E>
          Decorates another SortedBag 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
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
 class PredicatedList<E>
          Decorates another List to validate that all additions match a specified predicate.
 

Uses of PredicatedCollection in org.apache.commons.collections4.queue
 

Subclasses of PredicatedCollection in org.apache.commons.collections4.queue
 class PredicatedQueue<E>
          Decorates another Queue 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
 class PredicatedSet<E>
          Decorates another Set to validate that all additions match a specified predicate.
 class PredicatedSortedSet<E>
          Decorates another SortedSet to validate that all additions match a specified predicate.
 



Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.