Uses of Class
org.apache.commons.collections4.collection.AbstractCollectionDecorator
-
Packages that use AbstractCollectionDecorator Package Description org.apache.commons.collections4.bag org.apache.commons.collections4.bidimap org.apache.commons.collections4.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.map org.apache.commons.collections4.multiset This package contains implementations of theMultiSetinterface.org.apache.commons.collections4.queue This package contains implementations for theQueueinterface.org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces. -
-
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.bag
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.bag Modifier and Type Class Description classAbstractBagDecorator<E>Decorates anotherBagto provide additional behaviour.classAbstractSortedBagDecorator<E>Decorates anotherSortedBagto provide additional behaviour.classCollectionBag<E>Decorates anotherBagto comply with the Collection contract.classCollectionSortedBag<E>Decorates anotherSortedBagto comply with the Collection contract.classPredicatedBag<E>Decorates anotherBagto validate that additions match a specified predicate.classPredicatedSortedBag<E>Decorates anotherSortedBagto validate that additions match a specified predicate.classTransformedBag<E>Decorates anotherBagto transform objects that are added.classTransformedSortedBag<E>Decorates anotherSortedBagto transform objects that are added.classUnmodifiableBag<E>Decorates anotherBagto ensure it can't be altered.classUnmodifiableSortedBag<E>Decorates anotherSortedBagto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.bidimap
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.bidimap Modifier and Type Class Description protected static classAbstractDualBidiMap.EntrySet<K,V>Inner class EntrySet.protected static classAbstractDualBidiMap.KeySet<K>Inner class KeySet.protected static classAbstractDualBidiMap.Values<V>Inner class Values.protected static classAbstractDualBidiMap.View<K,V,E>Inner class View. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.collection
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.collection Modifier and Type Class Description classIndexedCollection<K,C>An IndexedCollection is a Map-like view onto a Collection.classPredicatedCollection<E>Decorates anotherCollectionto validate that additions match a specified predicate.classTransformedCollection<E>Decorates anotherCollectionto transform objects that are added.classUnmodifiableBoundedCollection<E>UnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.classUnmodifiableCollection<E>Decorates anotherCollectionto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.list
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.list Modifier and Type Class Description classAbstractListDecorator<E>Decorates anotherListto provide additional behaviour.classAbstractSerializableListDecorator<E>Serializable subclass of AbstractListDecorator.classFixedSizeList<E>Decorates anotherListto fix the size preventing add/remove.classGrowthList<E>Decorates anotherListto make it seamlessly grow when indices larger than the list size are used on add and set, avoiding most IndexOutOfBoundsExceptions.classLazyList<E>Decorates anotherListto create objects in the list on demand.classPredicatedList<E>Decorates anotherListto validate that all additions match a specified predicate.classSetUniqueList<E>Decorates aListto ensure that no duplicates are present much like aSet.classTransformedList<E>Decorates anotherListto transform objects that are added.classUnmodifiableList<E>Decorates anotherListto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.map
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.map Modifier and Type Class Description classUnmodifiableEntrySet<K,V>Decorates a map entrySetto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.multiset
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.multiset Modifier and Type Class Description classAbstractMultiSetDecorator<E>Decorates anotherMultSetto provide additional behaviour.classPredicatedMultiSet<E>Decorates anotherMultiSetto validate that additions match a specified predicate.classUnmodifiableMultiSet<E>Decorates anotherMultiSetto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.queue
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.queue Modifier and Type Class Description classAbstractQueueDecorator<E>Decorates anotherQueueto provide additional behaviour.classPredicatedQueue<E>Decorates anotherQueueto validate that additions match a specified predicate.classTransformedQueue<E>Decorates anotherQueueto transform objects that are added.classUnmodifiableQueue<E>Decorates anotherQueueto ensure it can't be altered. -
Uses of AbstractCollectionDecorator in org.apache.commons.collections4.set
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections4.set Modifier and Type Class Description classAbstractNavigableSetDecorator<E>Decorates anotherNavigableSetto provide additional behaviour.classAbstractSerializableSetDecorator<E>Serializable subclass of AbstractSetDecorator.classAbstractSetDecorator<E>Decorates anotherSetto provide additional behaviour.classAbstractSortedSetDecorator<E>Decorates anotherSortedSetto provide additional behaviour.classListOrderedSet<E>Decorates anotherSetto ensure that the order of addition is retained and used by the iterator.classPredicatedNavigableSet<E>Decorates anotherNavigableSetto validate that all additions match a specified predicate.classPredicatedSet<E>Decorates anotherSetto validate that all additions match a specified predicate.classPredicatedSortedSet<E>Decorates anotherSortedSetto validate that all additions match a specified predicate.classTransformedNavigableSet<E>Decorates anotherNavigableSetto transform objects that are added.classTransformedSet<E>Decorates anotherSetto transform objects that are added.classTransformedSortedSet<E>Decorates anotherSortedSetto transform objects that are added.classUnmodifiableNavigableSet<E>Decorates anotherNavigableSetto ensure it can't be altered.classUnmodifiableSet<E>Decorates anotherSetto ensure it can't be altered.classUnmodifiableSortedSet<E>Decorates anotherSortedSetto ensure it can't be altered.
-