Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableByteStack
Packages that use ImmutableByteStack
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 ImmutableByteStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStackFactory.empty()
ImmutableByteStackFactory.of()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStackFactory.of
(byte one) Same asImmutableByteStackFactory.with(byte)
.ImmutableByteStackFactory.of
(byte... items) ImmutableByteStackFactory.ofAll
(ByteIterable items) ImmutableByteStackFactory.ofAllReversed
(ByteIterable items) ImmutableByteStackFactory.with()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStackFactory.with
(byte one) ImmutableByteStackFactory.with
(byte... items) ImmutableByteStackFactory.withAll
(ByteIterable items) ImmutableByteStackFactory.withAllReversed
(ByteIterable items) -
Uses of ImmutableByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableStack.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStack.pop()
ImmutableByteStack.pop
(int count) ImmutableByteStack.push
(byte item) ImmutableByteStack.reject
(BytePredicate predicate) default ImmutableByteStack
ImmutableByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteStack.select
(BytePredicate predicate) default ImmutableByteStack
ImmutableByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack including all elements with corresponding indexes matching the specified predicate.default ImmutableByteStack
ImmutableByteStack.tap
(ByteProcedure procedure) ByteStack.toImmutable()
-
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableArrayStack.collectByte
(ByteFunction<? super T> byteFunction) Deprecated.ImmutableEmptyStack.collectByte
(ByteFunction<? super T> byteFunction) ImmutableNotEmptyStack.collectByte
(ByteFunction<? super T> function) -
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableByteStackModifier and TypeClassDescription(package private) final class
ImmutableByteArrayStack is the non-modifiable equivalent ofByteArrayStack
.(package private) final class
ImmutableByteEmptyStack is an optimization forImmutableByteStack
of size 0.(package private) final class
ImmutableByteSingletonStack is an optimization forImmutableByteStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableByteStackModifier and TypeFieldDescription(package private) static final ImmutableByteStack
ImmutableByteEmptyStack.INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStackFactoryImpl.empty()
ImmutableByteStackFactoryImpl.of()
ImmutableByteStackFactoryImpl.of
(byte one) ImmutableByteStackFactoryImpl.of
(byte... items) ImmutableByteStackFactoryImpl.ofAll
(ByteIterable items) ImmutableByteStackFactoryImpl.ofAllReversed
(ByteIterable items) ImmutableByteArrayStack.pop()
ImmutableByteArrayStack.pop
(int count) ImmutableByteEmptyStack.pop()
ImmutableByteEmptyStack.pop
(int count) ImmutableByteSingletonStack.pop()
ImmutableByteSingletonStack.pop
(int count) ImmutableByteArrayStack.push
(byte item) ImmutableByteEmptyStack.push
(byte element) ImmutableByteSingletonStack.push
(byte element) ImmutableByteArrayStack.reject
(BytePredicate predicate) ImmutableByteEmptyStack.reject
(BytePredicate predicate) ImmutableByteSingletonStack.reject
(BytePredicate predicate) ImmutableByteArrayStack.select
(BytePredicate predicate) ImmutableByteEmptyStack.select
(BytePredicate predicate) ImmutableByteSingletonStack.select
(BytePredicate predicate) ImmutableByteArrayStack.toImmutable()
ImmutableByteEmptyStack.toImmutable()
ImmutableByteSingletonStack.toImmutable()
ImmutableByteStackFactoryImpl.with()
ImmutableByteStackFactoryImpl.with
(byte one) ImmutableByteStackFactoryImpl.with
(byte... items) ImmutableByteStackFactoryImpl.withAll
(ByteIterable items) ImmutableByteStackFactoryImpl.withAllReversed
(ByteIterable items) -
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionByteArrayStack.toImmutable()
SynchronizedByteStack.toImmutable()
UnmodifiableByteStack.toImmutable()