Uses of Class
org.apache.commons.collections4.list.AbstractSerializableListDecorator
-
Packages that use AbstractSerializableListDecorator Package Description org.apache.commons.collections4.list This package contains implementations of theListinterface. -
-
Uses of AbstractSerializableListDecorator in org.apache.commons.collections4.list
Subclasses of AbstractSerializableListDecorator in org.apache.commons.collections4.list Modifier and Type Class Description classFixedSizeList<E>Decorates anotherListto fix the size preventing add/remove.classGrowthList<E>Decorates anotherListto make it seamlessly grow when indices larger than the list size are used on add and set, avoiding most IndexOutOfBoundsExceptions.classLazyList<E>Decorates anotherListto create objects in the list on demand.classSetUniqueList<E>Decorates aListto ensure that no duplicates are present much like aSet.classUnmodifiableList<E>Decorates anotherListto ensure it can't be altered.
-