Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableCharStack
-
Packages that use ImmutableCharStack 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 ImmutableCharStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
ImmutableCharStackFactory. empty()
ImmutableCharStack
ImmutableCharStackFactory. of()
Same asImmutableCharStackFactory.empty()
.ImmutableCharStack
ImmutableCharStackFactory. of(char one)
Same asImmutableCharStackFactory.with(char)
.ImmutableCharStack
ImmutableCharStackFactory. of(char... items)
ImmutableCharStack
ImmutableCharStackFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharStack
ImmutableCharStackFactory. ofAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. ofAllReversed(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. with()
Same asImmutableCharStackFactory.empty()
.ImmutableCharStack
ImmutableCharStackFactory. with(char one)
ImmutableCharStack
ImmutableCharStackFactory. with(char... items)
ImmutableCharStack
ImmutableCharStackFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharStack
ImmutableCharStackFactory. withAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactory. withAllReversed(CharIterable items)
-
Uses of ImmutableCharStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
ImmutableStack. collectChar(CharFunction<? super T> charFunction)
-
Uses of ImmutableCharStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
ImmutableCharStack. pop()
ImmutableCharStack
ImmutableCharStack. pop(int count)
ImmutableCharStack
ImmutableCharStack. push(char item)
ImmutableCharStack
ImmutableCharStack. reject(CharPredicate predicate)
default ImmutableCharStack
ImmutableCharStack. rejectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableCharStack
ImmutableCharStack. select(CharPredicate predicate)
default ImmutableCharStack
ImmutableCharStack. selectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharStack including all elements with corresponding indexes matching the specified predicate.default ImmutableCharStack
ImmutableCharStack. tap(CharProcedure procedure)
ImmutableCharStack
CharStack. toImmutable()
-
Uses of ImmutableCharStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
ImmutableArrayStack. collectChar(CharFunction<? super T> charFunction)
Deprecated.ImmutableCharStack
ImmutableEmptyStack. collectChar(CharFunction<? super T> charFunction)
ImmutableCharStack
ImmutableNotEmptyStack. collectChar(CharFunction<? super T> function)
-
Uses of ImmutableCharStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableCharStack Modifier and Type Class Description (package private) class
ImmutableCharArrayStack
ImmutableCharArrayStack is the non-modifiable equivalent ofCharArrayStack
.(package private) class
ImmutableCharEmptyStack
ImmutableCharEmptyStack is an optimization forImmutableCharStack
of size 0.(package private) class
ImmutableCharSingletonStack
ImmutableCharSingletonStack is an optimization forImmutableCharStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableCharStack Modifier and Type Field Description (package private) static ImmutableCharStack
ImmutableCharEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
ImmutableCharStackFactoryImpl. empty()
ImmutableCharStack
ImmutableCharStackFactoryImpl. of()
ImmutableCharStack
ImmutableCharStackFactoryImpl. of(char one)
ImmutableCharStack
ImmutableCharStackFactoryImpl. of(char... items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharStack
ImmutableCharStackFactoryImpl. ofAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. ofAllReversed(CharIterable items)
ImmutableCharStack
ImmutableCharArrayStack. pop()
ImmutableCharStack
ImmutableCharArrayStack. pop(int count)
ImmutableCharStack
ImmutableCharEmptyStack. pop()
ImmutableCharStack
ImmutableCharEmptyStack. pop(int count)
ImmutableCharStack
ImmutableCharSingletonStack. pop()
ImmutableCharStack
ImmutableCharSingletonStack. pop(int count)
ImmutableCharStack
ImmutableCharArrayStack. push(char item)
ImmutableCharStack
ImmutableCharEmptyStack. push(char element)
ImmutableCharStack
ImmutableCharSingletonStack. push(char element)
ImmutableCharStack
ImmutableCharArrayStack. reject(CharPredicate predicate)
ImmutableCharStack
ImmutableCharEmptyStack. reject(CharPredicate predicate)
ImmutableCharStack
ImmutableCharSingletonStack. reject(CharPredicate predicate)
ImmutableCharStack
ImmutableCharArrayStack. select(CharPredicate predicate)
ImmutableCharStack
ImmutableCharEmptyStack. select(CharPredicate predicate)
ImmutableCharStack
ImmutableCharSingletonStack. select(CharPredicate predicate)
ImmutableCharStack
ImmutableCharArrayStack. toImmutable()
ImmutableCharStack
ImmutableCharEmptyStack. toImmutable()
ImmutableCharStack
ImmutableCharSingletonStack. toImmutable()
ImmutableCharStack
ImmutableCharStackFactoryImpl. with()
ImmutableCharStack
ImmutableCharStackFactoryImpl. with(char one)
ImmutableCharStack
ImmutableCharStackFactoryImpl. with(char... items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharStack
ImmutableCharStackFactoryImpl. withAll(CharIterable items)
ImmutableCharStack
ImmutableCharStackFactoryImpl. withAllReversed(CharIterable items)
-
Uses of ImmutableCharStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableCharStack Modifier and Type Method Description ImmutableCharStack
CharArrayStack. toImmutable()
ImmutableCharStack
SynchronizedCharStack. toImmutable()
ImmutableCharStack
UnmodifiableCharStack. toImmutable()
-