Package | Description |
---|---|
org.apache.commons.collections4.bag | |
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.multiset |
This package contains implementations of the
MultiSet interface. |
org.apache.commons.collections4.queue |
This package contains implementations for the
Queue interface. |
org.apache.commons.collections4.set |
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
static <T> PredicatedCollection<T> |
PredicatedCollection.predicatedCollection(Collection<T> coll,
Predicate<? super T> predicate)
Factory method to create a predicated (validating) collection.
|
Modifier and Type | Class and Description |
---|---|
class |
PredicatedList<E>
Decorates another
List to validate that all additions
match a specified predicate. |
Modifier and Type | Class and Description |
---|---|
class |
PredicatedMultiSet<E>
Decorates another
MultiSet to validate that additions
match a specified predicate. |
Modifier and Type | Class and Description |
---|---|
class |
PredicatedQueue<E>
Decorates another
Queue to validate that additions
match a specified predicate. |
Modifier and Type | Class and Description |
---|---|
class |
PredicatedNavigableSet<E>
Decorates another
NavigableSet to validate that all additions
match a specified predicate. |
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–2019 The Apache Software Foundation. All rights reserved.