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 theFixedSizeListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces. -
-
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 classAbstractArrayAdapter<T>classAbstractMemoryEfficientMutableList<T>private static classAbstractMemoryEfficientMutableList.SubList<T>classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) classDoubletonList<T>A DoubletonList is a two-element memory efficient List.(package private) classEmptyList<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonList<T>This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) classQuintupletonList<T>This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) classSextupletonList<T>This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) classSingletonList<T>This class is a memory efficient list with one element.(package private) classTripletonList<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 classAbstractMutableList.SubList<T>classCompositeFastList<E>CompositeFastList behaves like a list, but is composed of at least one list.classFastList<T>FastList is an attempt to provide the same functionality as ArrayList without the support for concurrent modification exceptions.Fields in org.eclipse.collections.impl.list.mutable declared as AbstractMutableList Modifier and Type Field Description private AbstractMutableList<T>AbstractMutableList.SubList. originalConstructors in org.eclipse.collections.impl.list.mutable 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.primitive
Subclasses of AbstractMutableList in org.eclipse.collections.impl.list.mutable.primitive Modifier and Type Class Description classBoxedMutableBooleanListA boxed view of aMutableBooleanList.classBoxedMutableByteListA boxed view of aMutableByteList.classBoxedMutableCharListA boxed view of aMutableCharList.classBoxedMutableDoubleListA boxed view of aMutableDoubleList.classBoxedMutableFloatListA boxed view of aMutableFloatList.classBoxedMutableIntListA boxed view of aMutableIntList.classBoxedMutableLongListA boxed view of aMutableLongList.classBoxedMutableShortListA boxed view of aMutableShortList.
-