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 and
SortedMultiSet interfaces. |
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 ,
SortedSet and
NavigableSet interfaces. |
Modifier and Type | Class | 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 | Description |
---|---|---|
static <T> PredicatedCollection<T> |
PredicatedCollection.predicatedCollection(java.util.Collection<T> coll,
Predicate<? super T> predicate) |
Factory method to create a predicated (validating) collection.
|
Modifier and Type | Class | Description |
---|---|---|
class |
PredicatedList<E> |
Decorates another
List to validate that all additions
match a specified predicate. |
Modifier and Type | Class | Description |
---|---|---|
class |
PredicatedMultiSet<E> |
Decorates another
MultiSet to validate that additions
match a specified predicate. |
Modifier and Type | Class | Description |
---|---|---|
class |
PredicatedQueue<E> |
Decorates another
Queue to validate that additions
match a specified predicate. |
Modifier and Type | Class | 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 - Apache Software Foundation