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. -
-
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 ImmutableCharStackImmutableCharStackFactory. empty()ImmutableCharStackImmutableCharStackFactory. of()Same asImmutableCharStackFactory.empty().ImmutableCharStackImmutableCharStackFactory. of(char one)Same asImmutableCharStackFactory.with(char).ImmutableCharStackImmutableCharStackFactory. of(char... items)ImmutableCharStackImmutableCharStackFactory. ofAll(Iterable<Character> iterable)ImmutableCharStackImmutableCharStackFactory. ofAll(CharIterable items)ImmutableCharStackImmutableCharStackFactory. ofAllReversed(CharIterable items)ImmutableCharStackImmutableCharStackFactory. with()Same asImmutableCharStackFactory.empty().ImmutableCharStackImmutableCharStackFactory. with(char one)ImmutableCharStackImmutableCharStackFactory. with(char... items)ImmutableCharStackImmutableCharStackFactory. withAll(Iterable<Character> iterable)ImmutableCharStackImmutableCharStackFactory. withAll(CharIterable items)ImmutableCharStackImmutableCharStackFactory. 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 ImmutableCharStackImmutableStack. 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 ImmutableCharStackImmutableCharStack. pop()ImmutableCharStackImmutableCharStack. pop(int count)ImmutableCharStackImmutableCharStack. push(char item)ImmutableCharStackImmutableCharStack. reject(CharPredicate predicate)default ImmutableCharStackImmutableCharStack. rejectWithIndex(CharIntPredicate predicate)Returns a new ImmutableCharStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableCharStackImmutableCharStack. 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)ImmutableCharStackCharStack. toImmutable()
-