Uses of Class
org.eclipse.collections.impl.list.mutable.AbstractMutableList
-
Packages that use AbstractMutableList Package Description org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface. -
-
Uses of AbstractMutableList in org.eclipse.collections.impl.list.fixed
Subclasses of AbstractMutableList in org.eclipse.collections.impl.list.fixed Modifier and Type Class Description class
AbstractArrayAdapter<T>
class
AbstractMemoryEfficientMutableList<T>
private static class
AbstractMemoryEfficientMutableList.SubList<T>
class
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.(package private) class
DoubletonList<T>
A DoubletonList is a two-element memory efficient List.(package private) class
EmptyList<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonList<T>
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) class
QuintupletonList<T>
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) class
SextupletonList<T>
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) class
SingletonList<T>
This class is a memory efficient list with one element.(package private) class
TripletonList<T>
This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three).Constructors in org.eclipse.collections.impl.list.fixed with parameters of type AbstractMutableList Constructor Description SubList(AbstractMutableList<T> list, int fromIndex, int toIndex)
-
Uses of AbstractMutableList in org.eclipse.collections.impl.list.mutable
Subclasses of AbstractMutableList in org.eclipse.collections.impl.list.mutable Modifier and Type Class Description protected static class
AbstractMutableList.SubList<T>
class
CompositeFastList<E>
CompositeFastList behaves like a list, but is composed of at least one list.class
FastList<T>
FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.Constructors in org.eclipse.collections.impl.list.mutable with parameters of type AbstractMutableList Constructor Description SubList(AbstractMutableList<T> list, int fromIndex, int toIndex)
-