Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableByteStack
-
Packages that use ImmutableByteStack 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 ImmutableByteStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ImmutableByteStackFactory. empty()
ImmutableByteStack
ImmutableByteStackFactory. of()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStack
ImmutableByteStackFactory. of(byte one)
Same asImmutableByteStackFactory.with(byte)
.ImmutableByteStack
ImmutableByteStackFactory. of(byte... items)
ImmutableByteStack
ImmutableByteStackFactory. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteStack
ImmutableByteStackFactory. ofAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. ofAllReversed(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. with()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStack
ImmutableByteStackFactory. with(byte one)
ImmutableByteStack
ImmutableByteStackFactory. with(byte... items)
ImmutableByteStack
ImmutableByteStackFactory. withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteStack
ImmutableByteStackFactory. withAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactory. withAllReversed(ByteIterable items)
-
Uses of ImmutableByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ImmutableStack. 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 ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ImmutableByteStack. pop()
ImmutableByteStack
ImmutableByteStack. pop(int count)
ImmutableByteStack
ImmutableByteStack. push(byte item)
ImmutableByteStack
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
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)
ImmutableByteStack
ByteStack. toImmutable()
-
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ImmutableArrayStack. collectByte(ByteFunction<? super T> byteFunction)
Deprecated.ImmutableByteStack
ImmutableEmptyStack. collectByte(ByteFunction<? super T> byteFunction)
ImmutableByteStack
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 ImmutableByteStack Modifier and Type Class Description (package private) class
ImmutableByteArrayStack
ImmutableByteArrayStack is the non-modifiable equivalent ofByteArrayStack
.(package private) class
ImmutableByteEmptyStack
ImmutableByteEmptyStack is an optimization forImmutableByteStack
of size 0.(package private) class
ImmutableByteSingletonStack
ImmutableByteSingletonStack is an optimization forImmutableByteStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableByteStack Modifier and Type Field Description (package private) static ImmutableByteStack
ImmutableByteEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ImmutableByteStackFactoryImpl. empty()
ImmutableByteStack
ImmutableByteStackFactoryImpl. of()
ImmutableByteStack
ImmutableByteStackFactoryImpl. of(byte one)
ImmutableByteStack
ImmutableByteStackFactoryImpl. of(byte... items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteStack
ImmutableByteStackFactoryImpl. ofAll(ByteIterable items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. ofAllReversed(ByteIterable items)
ImmutableByteStack
ImmutableByteArrayStack. pop()
ImmutableByteStack
ImmutableByteArrayStack. pop(int count)
ImmutableByteStack
ImmutableByteEmptyStack. pop()
ImmutableByteStack
ImmutableByteEmptyStack. pop(int count)
ImmutableByteStack
ImmutableByteSingletonStack. pop()
ImmutableByteStack
ImmutableByteSingletonStack. pop(int count)
ImmutableByteStack
ImmutableByteArrayStack. push(byte item)
ImmutableByteStack
ImmutableByteEmptyStack. push(byte element)
ImmutableByteStack
ImmutableByteSingletonStack. push(byte element)
ImmutableByteStack
ImmutableByteArrayStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteEmptyStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteSingletonStack. reject(BytePredicate predicate)
ImmutableByteStack
ImmutableByteArrayStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteEmptyStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteSingletonStack. select(BytePredicate predicate)
ImmutableByteStack
ImmutableByteArrayStack. toImmutable()
ImmutableByteStack
ImmutableByteEmptyStack. toImmutable()
ImmutableByteStack
ImmutableByteSingletonStack. toImmutable()
ImmutableByteStack
ImmutableByteStackFactoryImpl. with()
ImmutableByteStack
ImmutableByteStackFactoryImpl. with(byte one)
ImmutableByteStack
ImmutableByteStackFactoryImpl. with(byte... items)
ImmutableByteStack
ImmutableByteStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Byte> iterable)
ImmutableByteStack
ImmutableByteStackFactoryImpl. withAll(ByteIterable items)
ImmutableByteStack
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 ImmutableByteStack Modifier and Type Method Description ImmutableByteStack
ByteArrayStack. toImmutable()
ImmutableByteStack
SynchronizedByteStack. toImmutable()
ImmutableByteStack
UnmodifiableByteStack. toImmutable()
-