Uses of Interface
org.eclipse.collections.api.stack.primitive.ShortStack
-
Packages that use ShortStack Package Description 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.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 ShortStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ShortStack Modifier and Type Method Description ShortStack
StackIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of ShortStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableShortStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableShortStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return ShortStack Modifier and Type Method Description ShortStack
ShortStack. reject(ShortPredicate predicate)
default ShortStack
ShortStack. rejectWithIndex(ShortIntPredicate predicate)
Returns a new ShortStack excluding all elements with corresponding indexes matching the specified predicate.ShortStack
ShortStack. select(ShortPredicate predicate)
default ShortStack
ShortStack. selectWithIndex(ShortIntPredicate predicate)
Returns a new ShortStack including all elements with corresponding indexes matching the specified predicate.default ShortStack
ShortStack. tap(ShortProcedure procedure)
-
Uses of ShortStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ShortStack 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 ShortStack Modifier and Type Field Description private ShortStack
ImmutableShortArrayStack.ImmutableShortStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ShortStack Constructor Description ImmutableShortStackSerializationProxy(ShortStack stack)
-
Uses of ShortStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement ShortStack 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. -
Uses of ShortStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement ShortStack Modifier and Type Class Description class
AbstractShortStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-