Package | Description |
---|---|
org.apache.commons.collections.list |
This package contains implementations of the
List interface. |
Modifier and Type | Class | Description |
---|---|---|
class |
FixedSizeList |
Decorates another
List to fix the size preventing add/remove. |
class |
GrowthList |
Decorates another
List to make it seamlessly grow when
indices larger than the list size are used on add and set,
avoiding most IndexOutOfBoundsExceptions. |
class |
LazyList |
Decorates another
List to create objects in the list on demand. |
class |
SetUniqueList |
Decorates a
List to ensure that no duplicates are present
much like a Set . |
class |
UnmodifiableList |
Decorates another
List to ensure it can't be altered. |
Copyright © 2001-2017 Apache Software Foundation. All Rights Reserved.