Package org.eclipse.collections.impl.list.fixed
This package contains implementations of the
FixedSizeList
interface.
A FixedSizeList
is a list that may be mutated, but cannot grow or shrink in size.
-
Class Summary Class Description AbstractArrayAdapter<T> AbstractMemoryEfficientMutableList<T> AbstractMemoryEfficientMutableList.SubList<T> ArrayAdapter<T> This class provides a MutableList wrapper around an array.DoubletonList<T> A DoubletonList is a two-element memory efficient List.EmptyList<T> This class is a memory efficient list with no elements.FixedSizeListFactoryImpl FixedSizeListIteratorAdapter<T> QuadrupletonList<T> This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).QuintupletonList<T> This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).SextupletonList<T> This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).SingletonList<T> This class is a memory efficient list with one element.TripletonList<T> This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three).