Uses of Class
org.apache.commons.collections.list.AbstractListDecorator
-
Packages that use AbstractListDecorator Package Description org.apache.commons.collections.list This package contains implementations of theList
interface. -
-
Uses of AbstractListDecorator in org.apache.commons.collections.list
Subclasses of AbstractListDecorator in org.apache.commons.collections.list Modifier and Type Class Description 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
SetUniqueList
Decorates aList
to ensure that no duplicates are present much like aSet
.class
UnmodifiableList
Decorates anotherList
to ensure it can't be altered.
-