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 theListinterface. -
-
Uses of AbstractListDecorator in org.apache.commons.collections.list
Subclasses of AbstractListDecorator in org.apache.commons.collections.list Modifier and Type Class Description 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.classSetUniqueListDecorates aListto ensure that no duplicates are present much like aSet.classUnmodifiableListDecorates anotherListto ensure it can't be altered.
-