Uses of Interface
org.eclipse.collections.api.stack.primitive.ByteStack
-
Packages that use ByteStack 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 ByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ByteStack Modifier and Type Method Description ByteStack
StackIterable. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of ByteStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of ByteStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableByteStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableByteStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return ByteStack Modifier and Type Method Description ByteStack
ByteStack. reject(BytePredicate predicate)
default ByteStack
ByteStack. rejectWithIndex(ByteIntPredicate predicate)
Returns a new ByteStack excluding all elements with corresponding indexes matching the specified predicate.ByteStack
ByteStack. select(BytePredicate predicate)
default ByteStack
ByteStack. selectWithIndex(ByteIntPredicate predicate)
Returns a new ByteStack including all elements with corresponding indexes matching the specified predicate.default ByteStack
ByteStack. tap(ByteProcedure procedure)
-
Uses of ByteStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ByteStack 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 ByteStack Modifier and Type Field Description private ByteStack
ImmutableByteArrayStack.ImmutableByteStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ByteStack Constructor Description ImmutableByteStackSerializationProxy(ByteStack stack)
-
Uses of ByteStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement ByteStack Modifier and Type Class Description class
ByteArrayStack
ByteArrayStack is similar toArrayStack
, and is memory-optimized for byte primitives.class
SynchronizedByteStack
A synchronized view of aMutableByteStack
.class
UnmodifiableByteStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of ByteStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement ByteStack Modifier and Type Class Description class
AbstractByteStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-