Uses of Class
org.apache.commons.collections.list.AbstractSerializableListDecorator
-
Packages that use AbstractSerializableListDecorator Package Description org.apache.commons.collections.list This package contains implementations of theListinterface. -
-
Uses of AbstractSerializableListDecorator in org.apache.commons.collections.list
Subclasses of AbstractSerializableListDecorator in org.apache.commons.collections.list Modifier and Type Class Description 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.
-