Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableShortStack
-
Packages that use ImmutableShortStack 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.immutable This package contains implementations of theImmutableStack
interface.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. -
-
Uses of ImmutableShortStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ImmutableShortStackFactory. empty()
ImmutableShortStack
ImmutableShortStackFactory. of()
Same asImmutableShortStackFactory.empty()
.ImmutableShortStack
ImmutableShortStackFactory. of(short one)
ImmutableShortStack
ImmutableShortStackFactory. of(short... items)
ImmutableShortStack
ImmutableShortStackFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortStack
ImmutableShortStackFactory. ofAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. ofAllReversed(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. with()
Same asImmutableShortStackFactory.empty()
.ImmutableShortStack
ImmutableShortStackFactory. with(short one)
ImmutableShortStack
ImmutableShortStackFactory. with(short... items)
ImmutableShortStack
ImmutableShortStackFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortStack
ImmutableShortStackFactory. withAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. withAllReversed(ShortIterable items)
-
Uses of ImmutableShortStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ImmutableStack. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ImmutableShortStack. pop()
ImmutableShortStack
ImmutableShortStack. pop(int count)
ImmutableShortStack
ImmutableShortStack. push(short item)
ImmutableShortStack
ImmutableShortStack. reject(ShortPredicate predicate)
default ImmutableShortStack
ImmutableShortStack. rejectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableShortStack
ImmutableShortStack. select(ShortPredicate predicate)
default ImmutableShortStack
ImmutableShortStack. selectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortStack including all elements with corresponding indexes matching the specified predicate.default ImmutableShortStack
ImmutableShortStack. tap(ShortProcedure procedure)
ImmutableShortStack
ShortStack. toImmutable()
-
Uses of ImmutableShortStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ImmutableArrayStack. collectShort(ShortFunction<? super T> shortFunction)
Deprecated.ImmutableShortStack
ImmutableEmptyStack. collectShort(ShortFunction<? super T> shortFunction)
ImmutableShortStack
ImmutableNotEmptyStack. collectShort(ShortFunction<? super T> function)
-
Uses of ImmutableShortStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableShortStack Modifier and Type Class Description (package private) class
ImmutableShortArrayStack
ImmutableShortArrayStack is the non-modifiable equivalent ofShortArrayStack
.(package private) class
ImmutableShortEmptyStack
ImmutableShortEmptyStack is an optimization forImmutableShortStack
of size 0.(package private) class
ImmutableShortSingletonStack
ImmutableShortSingletonStack is an optimization forImmutableShortStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableShortStack Modifier and Type Field Description (package private) static ImmutableShortStack
ImmutableShortEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ImmutableShortStackFactoryImpl. empty()
ImmutableShortStack
ImmutableShortStackFactoryImpl. of()
ImmutableShortStack
ImmutableShortStackFactoryImpl. of(short one)
ImmutableShortStack
ImmutableShortStackFactoryImpl. of(short... items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortStack
ImmutableShortStackFactoryImpl. ofAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)
ImmutableShortStack
ImmutableShortArrayStack. pop()
ImmutableShortStack
ImmutableShortArrayStack. pop(int count)
ImmutableShortStack
ImmutableShortEmptyStack. pop()
ImmutableShortStack
ImmutableShortEmptyStack. pop(int count)
ImmutableShortStack
ImmutableShortSingletonStack. pop()
ImmutableShortStack
ImmutableShortSingletonStack. pop(int count)
ImmutableShortStack
ImmutableShortArrayStack. push(short item)
ImmutableShortStack
ImmutableShortEmptyStack. push(short element)
ImmutableShortStack
ImmutableShortSingletonStack. push(short element)
ImmutableShortStack
ImmutableShortArrayStack. reject(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortEmptyStack. reject(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortSingletonStack. reject(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortArrayStack. select(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortEmptyStack. select(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortSingletonStack. select(ShortPredicate predicate)
ImmutableShortStack
ImmutableShortArrayStack. toImmutable()
ImmutableShortStack
ImmutableShortEmptyStack. toImmutable()
ImmutableShortStack
ImmutableShortSingletonStack. toImmutable()
ImmutableShortStack
ImmutableShortStackFactoryImpl. with()
ImmutableShortStack
ImmutableShortStackFactoryImpl. with(short one)
ImmutableShortStack
ImmutableShortStackFactoryImpl. with(short... items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortStack
ImmutableShortStackFactoryImpl. withAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. withAllReversed(ShortIterable items)
-
Uses of ImmutableShortStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableShortStack Modifier and Type Method Description ImmutableShortStack
ShortArrayStack. toImmutable()
ImmutableShortStack
SynchronizedShortStack. toImmutable()
ImmutableShortStack
UnmodifiableShortStack. toImmutable()
-