Uses of Class
org.apache.commons.collections.collection.AbstractCollectionDecorator
-
Packages that use AbstractCollectionDecorator Package Description org.apache.commons.collections.bag org.apache.commons.collections.bidimap org.apache.commons.collections.buffer This package contains implementations of theBuffer
interface.org.apache.commons.collections.collection This package contains implementations of theCollection
interface.org.apache.commons.collections.list This package contains implementations of theList
interface.org.apache.commons.collections.map org.apache.commons.collections.set This package contains implementations of theSet
andSortedSet
interfaces. -
-
Uses of AbstractCollectionDecorator in org.apache.commons.collections.bag
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.bag Modifier and Type Class Description class
AbstractBagDecorator
Decorates anotherBag
to provide additional behaviour.class
AbstractSortedBagDecorator
Decorates anotherSortedBag
to provide additional behaviour.class
PredicatedBag
Decorates anotherBag
to validate that additions match a specified predicate.class
PredicatedSortedBag
Decorates anotherSortedBag
to validate that additions match a specified predicate.class
TransformedBag
Decorates anotherBag
to transform objects that are added.class
TransformedSortedBag
Decorates anotherSortedBag
to transform objects that are added.class
UnmodifiableBag
Decorates anotherBag
to ensure it can't be altered.class
UnmodifiableSortedBag
Decorates anotherSortedBag
to ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.bidimap
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.bidimap Modifier and Type Class Description protected static class
AbstractDualBidiMap.EntrySet
Inner class EntrySet.protected static class
AbstractDualBidiMap.KeySet
Inner class KeySet.protected static class
AbstractDualBidiMap.Values
Inner class Values.protected static class
AbstractDualBidiMap.View
Inner class View. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.buffer
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.buffer Modifier and Type Class Description class
AbstractBufferDecorator
Decorates anotherBuffer
to provide additional behaviour.class
PredicatedBuffer
Decorates anotherBuffer
to validate that additions match a specified predicate.class
TransformedBuffer
Decorates anotherBuffer
to transform objects that are added.class
UnmodifiableBuffer
Decorates anotherBuffer
to ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.collection
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.collection Modifier and Type Class Description class
AbstractSerializableCollectionDecorator
Serializable subclass of AbstractCollectionDecorator.class
PredicatedCollection
Decorates anotherCollection
to validate that additions match a specified predicate.class
TransformedCollection
Decorates anotherCollection
to transform objects that are added.class
UnmodifiableBoundedCollection
UnmodifiableBoundedCollection
decorates anotherBoundedCollection
to ensure it can't be altered.class
UnmodifiableCollection
Decorates anotherCollection
to ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.list
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.list Modifier and Type Class Description class
AbstractListDecorator
Decorates anotherList
to provide additional behaviour.class
AbstractSerializableListDecorator
Serializable subclass of AbstractListDecorator.class
FixedSizeList
Decorates anotherList
to fix the size preventing add/remove.class
GrowthList
Decorates anotherList
to make it seamlessly grow when indices larger than the list size are used on add and set, avoiding most IndexOutOfBoundsExceptions.class
LazyList
Decorates anotherList
to create objects in the list on demand.class
PredicatedList
Decorates anotherList
to validate that all additions match a specified predicate.class
SetUniqueList
Decorates aList
to ensure that no duplicates are present much like aSet
.class
TransformedList
Decorates anotherList
to transform objects that are added.class
UnmodifiableList
Decorates anotherList
to ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.map
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.map Modifier and Type Class Description (package private) static class
AbstractInputCheckedMapDecorator.EntrySet
Implementation of an entry set that checks additions via setValue.class
UnmodifiableEntrySet
Decorates a map entrySet
to ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections.set
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.set Modifier and Type Class Description class
AbstractSerializableSetDecorator
Serializable subclass of AbstractSetDecorator.class
AbstractSetDecorator
Decorates anotherSet
to provide additional behaviour.class
AbstractSortedSetDecorator
Decorates anotherSortedSet
to provide additional behaviour.class
ListOrderedSet
Decorates anotherSet
to ensure that the order of addition is retained and used by the iterator.class
PredicatedSet
Decorates anotherSet
to validate that all additions match a specified predicate.class
PredicatedSortedSet
Decorates anotherSortedSet
to validate that all additions match a specified predicate.class
TransformedSet
Decorates anotherSet
to transform objects that are added.class
TransformedSortedSet
Decorates anotherSortedSet
to transform objects that are added.class
UnmodifiableSet
Decorates anotherSet
to ensure it can't be altered.class
UnmodifiableSortedSet
Decorates anotherSortedSet
to ensure it can't be altered.
-