Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableShortStack
-
Packages that use MutableShortStack Package Description org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces. -
-
Uses of MutableShortStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return MutableShortStack Modifier and Type Method Description MutableShortStack
MutableShortStackFactory. empty()
MutableShortStack
MutableShortStackFactory. of()
Same asMutableShortStackFactory.empty()
.MutableShortStack
MutableShortStackFactory. of(short... items)
MutableShortStack
MutableShortStackFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortStack
MutableShortStackFactory. ofAll(ShortIterable items)
MutableShortStack
MutableShortStackFactory. ofAllReversed(ShortIterable items)
MutableShortStack
MutableShortStackFactory. with()
Same asMutableShortStackFactory.empty()
.MutableShortStack
MutableShortStackFactory. with(short... items)
MutableShortStack
MutableShortStackFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortStack
MutableShortStackFactory. withAll(ShortIterable items)
MutableShortStack
MutableShortStackFactory. withAllReversed(ShortIterable items)
-
Uses of MutableShortStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableShortStack Modifier and Type Method Description MutableShortStack
MutableStack. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return MutableShortStack Modifier and Type Method Description MutableShortStack
MutableShortStack. asSynchronized()
MutableShortStack
MutableShortStack. asUnmodifiable()
default MutableShortStack
MutableShortStack. newEmpty()
Creates a new empty mutable version of the same stack type.MutableShortStack
MutableShortStack. reject(ShortPredicate predicate)
default MutableShortStack
MutableShortStack. rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack excluding all elements with corresponding indexes matching the specified predicate.MutableShortStack
MutableShortStack. select(ShortPredicate predicate)
default MutableShortStack
MutableShortStack. selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack including all elements with corresponding indexes matching the specified predicate.default MutableShortStack
MutableShortStack. tap(ShortProcedure procedure)
-
Uses of MutableShortStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableShortStack Modifier and Type Method Description MutableShortStack
ArrayStack. collectShort(ShortFunction<? super T> shortFunction)
MutableShortStack
SynchronizedStack. collectShort(ShortFunction<? super T> shortFunction)
MutableShortStack
UnmodifiableStack. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement MutableShortStack Modifier and Type Class Description class
ShortArrayStack
ShortArrayStack is similar toArrayStack
, and is memory-optimized for short primitives.class
SynchronizedShortStack
A synchronized view of aMutableShortStack
.class
UnmodifiableShortStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Fields in org.eclipse.collections.impl.stack.mutable.primitive declared as MutableShortStack Modifier and Type Field Description private MutableShortStack
SynchronizedShortStack. stack
private MutableShortStack
UnmodifiableShortStack. stack
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableShortStack Modifier and Type Method Description MutableShortStack
ShortArrayStack. asSynchronized()
MutableShortStack
SynchronizedShortStack. asSynchronized()
MutableShortStack
UnmodifiableShortStack. asSynchronized()
MutableShortStack
ShortArrayStack. asUnmodifiable()
MutableShortStack
SynchronizedShortStack. asUnmodifiable()
MutableShortStack
UnmodifiableShortStack. asUnmodifiable()
MutableShortStack
MutableShortStackFactoryImpl. empty()
MutableShortStack
SynchronizedShortStack. newEmpty()
MutableShortStack
UnmodifiableShortStack. newEmpty()
MutableShortStack
MutableShortStackFactoryImpl. of()
MutableShortStack
MutableShortStackFactoryImpl. of(short... items)
MutableShortStack
MutableShortStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortStack
MutableShortStackFactoryImpl. ofAll(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)
MutableShortStack
ShortArrayStack. reject(ShortPredicate predicate)
MutableShortStack
SynchronizedShortStack. reject(ShortPredicate predicate)
MutableShortStack
UnmodifiableShortStack. reject(ShortPredicate predicate)
MutableShortStack
SynchronizedShortStack. rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack excluding all elements with corresponding indexes matching the specified predicate.MutableShortStack
ShortArrayStack. select(ShortPredicate predicate)
MutableShortStack
SynchronizedShortStack. select(ShortPredicate predicate)
MutableShortStack
UnmodifiableShortStack. select(ShortPredicate predicate)
MutableShortStack
SynchronizedShortStack. selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack including all elements with corresponding indexes matching the specified predicate.MutableShortStack
MutableShortStackFactoryImpl. with()
MutableShortStack
MutableShortStackFactoryImpl. with(short... items)
MutableShortStack
MutableShortStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortStack
MutableShortStackFactoryImpl. withAll(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. withAllReversed(ShortIterable items)
Constructors in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type MutableShortStack Constructor Description SynchronizedShortStack(MutableShortStack stack)
SynchronizedShortStack(MutableShortStack stack, java.lang.Object newLock)
UnmodifiableShortStack(MutableShortStack stack)
-