Package org.eclipse.collections.impl.list.fixed
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.
-
ClassesClassDescriptionArrayAdapter<T>This class provides a MutableList wrapper around an array.A DoubletonList is a two-element memory efficient List.EmptyList<T>This class is a memory efficient list with no elements.This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).This class is a memory efficient list with one element.This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three).