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 theBufferinterface.org.apache.commons.collections.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections.list This package contains implementations of theListinterface.org.apache.commons.collections.map org.apache.commons.collections.set This package contains implementations of theSetandSortedSetinterfaces. -
-
Uses of AbstractCollectionDecorator in org.apache.commons.collections.bag
Subclasses of AbstractCollectionDecorator in org.apache.commons.collections.bag Modifier and Type Class Description classAbstractBagDecoratorDecorates anotherBagto provide additional behaviour.classAbstractSortedBagDecoratorDecorates anotherSortedBagto provide additional behaviour.classPredicatedBagDecorates anotherBagto validate that additions match a specified predicate.classPredicatedSortedBagDecorates anotherSortedBagto validate that additions match a specified predicate.classTransformedBagDecorates anotherBagto transform objects that are added.classTransformedSortedBagDecorates anotherSortedBagto transform objects that are added.classUnmodifiableBagDecorates anotherBagto ensure it can't be altered.classUnmodifiableSortedBagDecorates anotherSortedBagto 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 classAbstractDualBidiMap.EntrySetInner class EntrySet.protected static classAbstractDualBidiMap.KeySetInner class KeySet.protected static classAbstractDualBidiMap.ValuesInner class Values.protected static classAbstractDualBidiMap.ViewInner 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 classAbstractBufferDecoratorDecorates anotherBufferto provide additional behaviour.classPredicatedBufferDecorates anotherBufferto validate that additions match a specified predicate.classTransformedBufferDecorates anotherBufferto transform objects that are added.classUnmodifiableBufferDecorates anotherBufferto 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 classAbstractSerializableCollectionDecoratorSerializable subclass of AbstractCollectionDecorator.classPredicatedCollectionDecorates anotherCollectionto validate that additions match a specified predicate.classTransformedCollectionDecorates anotherCollectionto transform objects that are added.classUnmodifiableBoundedCollectionUnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.classUnmodifiableCollectionDecorates anotherCollectionto 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 classAbstractListDecoratorDecorates anotherListto provide additional behaviour.classAbstractSerializableListDecoratorSerializable subclass of AbstractListDecorator.classFixedSizeListDecorates anotherListto fix the size preventing add/remove.classGrowthListDecorates anotherListto make it seamlessly grow when indices larger than the list size are used on add and set, avoiding most IndexOutOfBoundsExceptions.classLazyListDecorates anotherListto create objects in the list on demand.classPredicatedListDecorates anotherListto validate that all additions match a specified predicate.classSetUniqueListDecorates aListto ensure that no duplicates are present much like aSet.classTransformedListDecorates anotherListto transform objects that are added.classUnmodifiableListDecorates anotherListto 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 classAbstractInputCheckedMapDecorator.EntrySetImplementation of an entry set that checks additions via setValue.classUnmodifiableEntrySetDecorates a map entrySetto 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 classAbstractSerializableSetDecoratorSerializable subclass of AbstractSetDecorator.classAbstractSetDecoratorDecorates anotherSetto provide additional behaviour.classAbstractSortedSetDecoratorDecorates anotherSortedSetto provide additional behaviour.classListOrderedSetDecorates anotherSetto ensure that the order of addition is retained and used by the iterator.classPredicatedSetDecorates anotherSetto validate that all additions match a specified predicate.classPredicatedSortedSetDecorates anotherSortedSetto validate that all additions match a specified predicate.classTransformedSetDecorates anotherSetto transform objects that are added.classTransformedSortedSetDecorates anotherSortedSetto transform objects that are added.classUnmodifiableSetDecorates anotherSetto ensure it can't be altered.classUnmodifiableSortedSetDecorates anotherSortedSetto ensure it can't be altered.
-