Uses of Class
org.eclipse.collections.impl.list.mutable.primitive.LongArrayList
-
Packages that use LongArrayList Package Description org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of LongArrayList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return LongArrayList Modifier and Type Method Description LongArrayList
LongArrayList. newEmpty()
Creates a new empty LongArrayList.static LongArrayList
LongArrayList. newList(LongIterable source)
static LongArrayList
LongArrayList. newListWith(long... elements)
Creates a new list using the passedelements
argument as the backing store.static LongArrayList
LongArrayList. newWithNValues(int size, long value)
LongArrayList
LongArrayList. reject(LongPredicate predicate)
LongArrayList
LongArrayList. reverseThis()
LongArrayList
LongArrayList. select(LongPredicate predicate)
LongArrayList
LongArrayList. sortThis()
LongArrayList
LongArrayList. sortThis(LongComparator comparator)
LongArrayList
LongArrayList. toReversed()
LongArrayList
LongArrayList. with(long element)
LongArrayList
LongArrayList. with(long element1, long element2)
LongArrayList
LongArrayList. with(long element1, long element2, long element3)
LongArrayList
LongArrayList. with(long element1, long element2, long element3, long... elements)
LongArrayList
LongArrayList. withAll(LongIterable elements)
private LongArrayList
LongArrayList. withArrayCopy(long[] elements, int begin, int length)
LongArrayList
LongArrayList. without(long element)
LongArrayList
LongArrayList. withoutAll(LongIterable elements)
static LongArrayList
LongArrayList. wrapCopy(long... array)
Creates a new list by first copying the array passed in. -
Uses of LongArrayList in org.eclipse.collections.impl.stack.immutable.primitive
Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as LongArrayList Modifier and Type Field Description private LongArrayList
ImmutableLongArrayStack. delegate
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return LongArrayList Modifier and Type Method Description protected LongArrayList
ImmutableLongArrayStack. getDelegate()
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type LongArrayList Constructor Description ImmutableLongArrayStack(LongArrayList newElements)
-
Uses of LongArrayList in org.eclipse.collections.impl.stack.mutable.primitive
Fields in org.eclipse.collections.impl.stack.mutable.primitive declared as LongArrayList Modifier and Type Field Description private LongArrayList
LongArrayStack. delegate
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return LongArrayList Modifier and Type Method Description protected LongArrayList
LongArrayStack. getDelegate()
-
Uses of LongArrayList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return LongArrayList Modifier and Type Method Description protected abstract LongArrayList
AbstractLongStack. getDelegate()
-