Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableCharStack
Packages that use ImmutableCharStack
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 ImmutableCharStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableCharStackModifier and TypeMethodDescriptionImmutableCharStackFactory.empty()ImmutableCharStackFactory.of()Same asImmutableCharStackFactory.empty().ImmutableCharStackFactory.of(char one) Same asImmutableCharStackFactory.with(char).ImmutableCharStackFactory.of(char... items) ImmutableCharStackFactory.ofAll(CharIterable items) ImmutableCharStackFactory.ofAllReversed(CharIterable items) ImmutableCharStackFactory.with()Same asImmutableCharStackFactory.empty().ImmutableCharStackFactory.with(char one) ImmutableCharStackFactory.with(char... items) ImmutableCharStackFactory.withAll(CharIterable items) ImmutableCharStackFactory.withAllReversed(CharIterable items) -
Uses of ImmutableCharStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableCharStackModifier and TypeMethodDescriptionImmutableStack.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 ImmutableCharStackModifier and TypeMethodDescriptionImmutableCharStack.pop()ImmutableCharStack.pop(int count) ImmutableCharStack.push(char item) ImmutableCharStack.reject(CharPredicate predicate) default ImmutableCharStackImmutableCharStack.rejectWithIndex(CharIntPredicate predicate) Returns a new ImmutableCharStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableCharStack.select(CharPredicate predicate) default ImmutableCharStackImmutableCharStack.selectWithIndex(CharIntPredicate predicate) Returns a new ImmutableCharStack including all elements with corresponding indexes matching the specified predicate.default ImmutableCharStackImmutableCharStack.tap(CharProcedure procedure) CharStack.toImmutable() -
Uses of ImmutableCharStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableCharStackModifier and TypeMethodDescriptionImmutableArrayStack.collectChar(CharFunction<? super T> charFunction) Deprecated.ImmutableEmptyStack.collectChar(CharFunction<? super T> charFunction) 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 ImmutableCharStackModifier and TypeClassDescription(package private) final classImmutableCharArrayStack is the non-modifiable equivalent ofCharArrayStack.(package private) final classImmutableCharEmptyStack is an optimization forImmutableCharStackof size 0.(package private) final classImmutableCharSingletonStack is an optimization forImmutableCharStackof size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableCharStackModifier and TypeFieldDescription(package private) static final ImmutableCharStackImmutableCharEmptyStack.INSTANCEMethods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableCharStackModifier and TypeMethodDescriptionImmutableCharStackFactoryImpl.empty()ImmutableCharStackFactoryImpl.of()ImmutableCharStackFactoryImpl.of(char one) ImmutableCharStackFactoryImpl.of(char... items) ImmutableCharStackFactoryImpl.ofAll(CharIterable items) ImmutableCharStackFactoryImpl.ofAllReversed(CharIterable items) ImmutableCharArrayStack.pop()ImmutableCharArrayStack.pop(int count) ImmutableCharEmptyStack.pop()ImmutableCharEmptyStack.pop(int count) ImmutableCharSingletonStack.pop()ImmutableCharSingletonStack.pop(int count) ImmutableCharArrayStack.push(char item) ImmutableCharEmptyStack.push(char element) ImmutableCharSingletonStack.push(char element) ImmutableCharArrayStack.reject(CharPredicate predicate) ImmutableCharEmptyStack.reject(CharPredicate predicate) ImmutableCharSingletonStack.reject(CharPredicate predicate) ImmutableCharArrayStack.select(CharPredicate predicate) ImmutableCharEmptyStack.select(CharPredicate predicate) ImmutableCharSingletonStack.select(CharPredicate predicate) ImmutableCharArrayStack.toImmutable()ImmutableCharEmptyStack.toImmutable()ImmutableCharSingletonStack.toImmutable()ImmutableCharStackFactoryImpl.with()ImmutableCharStackFactoryImpl.with(char one) ImmutableCharStackFactoryImpl.with(char... items) ImmutableCharStackFactoryImpl.withAll(CharIterable items) 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 ImmutableCharStackModifier and TypeMethodDescriptionCharArrayStack.toImmutable()SynchronizedCharStack.toImmutable()UnmodifiableCharStack.toImmutable()