Uses of Class
org.apache.commons.collections.collection.AbstractSerializableCollectionDecorator
-
Packages that use AbstractSerializableCollectionDecorator Package Description org.apache.commons.collections.bag 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.set This package contains implementations of theSet
andSortedSet
interfaces. -
-
Uses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.bag
Subclasses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.bag Modifier and Type Class Description 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. -
Uses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.buffer
Subclasses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.buffer Modifier and Type Class Description class
PredicatedBuffer
Decorates anotherBuffer
to validate that additions match a specified predicate.class
TransformedBuffer
Decorates anotherBuffer
to transform objects that are added. -
Uses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.collection
Subclasses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.collection Modifier and Type Class Description 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 AbstractSerializableCollectionDecorator in org.apache.commons.collections.list
Subclasses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.list Modifier and Type Class Description class
PredicatedList
Decorates anotherList
to validate that all additions match a specified predicate.class
TransformedList
Decorates anotherList
to transform objects that are added. -
Uses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.set
Subclasses of AbstractSerializableCollectionDecorator in org.apache.commons.collections.set Modifier and Type Class Description 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.
-