Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableShortStack
Packages that use ImmutableShortStack
Package
Description
This package contains factory API for creating primitive stack instances.
This package contains interfaces for stack API.
This package contains mutable and immutable primitive stack API.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the immutable primitive stack interfaces.
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 ImmutableShortStackModifier and TypeMethodDescriptionImmutableShortStackFactory.empty()ImmutableShortStackFactory.of()Same asImmutableShortStackFactory.empty().ImmutableShortStackFactory.of(short one) ImmutableShortStackFactory.of(short... items) ImmutableShortStackFactory.ofAll(ShortIterable items) ImmutableShortStackFactory.ofAllReversed(ShortIterable items) ImmutableShortStackFactory.with()Same asImmutableShortStackFactory.empty().ImmutableShortStackFactory.with(short one) ImmutableShortStackFactory.with(short... items) ImmutableShortStackFactory.withAll(ShortIterable items) ImmutableShortStackFactory.withAllReversed(ShortIterable items) -
Uses of ImmutableShortStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableShortStackModifier and TypeMethodDescriptionImmutableStack.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 ImmutableShortStackModifier and TypeMethodDescriptionImmutableShortStack.pop()ImmutableShortStack.pop(int count) ImmutableShortStack.push(short item) ImmutableShortStack.reject(ShortPredicate predicate) default ImmutableShortStackImmutableShortStack.rejectWithIndex(ShortIntPredicate predicate) Returns a new ImmutableShortStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableShortStack.select(ShortPredicate predicate) default ImmutableShortStackImmutableShortStack.selectWithIndex(ShortIntPredicate predicate) Returns a new ImmutableShortStack including all elements with corresponding indexes matching the specified predicate.default ImmutableShortStackImmutableShortStack.tap(ShortProcedure procedure) ShortStack.toImmutable() -
Uses of ImmutableShortStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableShortStackModifier and TypeMethodDescriptionImmutableArrayStack.collectShort(ShortFunction<? super T> shortFunction) Deprecated.ImmutableEmptyStack.collectShort(ShortFunction<? super T> shortFunction) 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 ImmutableShortStackModifier and TypeClassDescription(package private) final classImmutableShortArrayStack is the non-modifiable equivalent ofShortArrayStack.(package private) final classImmutableShortEmptyStack is an optimization forImmutableShortStackof size 0.(package private) final classImmutableShortSingletonStack is an optimization forImmutableShortStackof size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableShortStackModifier and TypeFieldDescription(package private) static final ImmutableShortStackImmutableShortEmptyStack.INSTANCEMethods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableShortStackModifier and TypeMethodDescriptionImmutableShortStackFactoryImpl.empty()ImmutableShortStackFactoryImpl.of()ImmutableShortStackFactoryImpl.of(short one) ImmutableShortStackFactoryImpl.of(short... items) ImmutableShortStackFactoryImpl.ofAll(ShortIterable items) ImmutableShortStackFactoryImpl.ofAllReversed(ShortIterable items) ImmutableShortArrayStack.pop()ImmutableShortArrayStack.pop(int count) ImmutableShortEmptyStack.pop()ImmutableShortEmptyStack.pop(int count) ImmutableShortSingletonStack.pop()ImmutableShortSingletonStack.pop(int count) ImmutableShortArrayStack.push(short item) ImmutableShortEmptyStack.push(short element) ImmutableShortSingletonStack.push(short element) ImmutableShortArrayStack.reject(ShortPredicate predicate) ImmutableShortEmptyStack.reject(ShortPredicate predicate) ImmutableShortSingletonStack.reject(ShortPredicate predicate) ImmutableShortArrayStack.select(ShortPredicate predicate) ImmutableShortEmptyStack.select(ShortPredicate predicate) ImmutableShortSingletonStack.select(ShortPredicate predicate) ImmutableShortArrayStack.toImmutable()ImmutableShortEmptyStack.toImmutable()ImmutableShortSingletonStack.toImmutable()ImmutableShortStackFactoryImpl.with()ImmutableShortStackFactoryImpl.with(short one) ImmutableShortStackFactoryImpl.with(short... items) ImmutableShortStackFactoryImpl.withAll(ShortIterable items) 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 ImmutableShortStackModifier and TypeMethodDescriptionShortArrayStack.toImmutable()SynchronizedShortStack.toImmutable()UnmodifiableShortStack.toImmutable()