Uses of Interface
org.eclipse.collections.api.iterator.CharIterator
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains primitive iterator API.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of CharIterator in org.eclipse.collections.api
Modifier and TypeMethodDescriptionCharIterable.charIterator()
Returns a primitive iterator that can be used to iterate over the CharIterable in an imperative style. -
Uses of CharIterator in org.eclipse.collections.api.iterator
Modifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveIterator.stg. -
Uses of CharIterator in org.eclipse.collections.impl.iterator
Modifier and TypeClassDescriptionfinal class
This file was automatically generated from template file primitiveImmutableEmptyIterator.stg.final class
This file was automatically generated from template file singletonPrimitiveIterator.stg.class
UnmodifiableCharIterator is a wrapper around CharIterator which is unmodifiable and doesn't support remove. -
Uses of CharIterator in org.eclipse.collections.impl.lazy.primitive
Modifier and TypeMethodDescriptionCollectBooleanToCharIterable.charIterator()
CollectByteToCharIterable.charIterator()
CollectCharIterable.charIterator()
CollectCharToCharIterable.charIterator()
CollectDoubleToCharIterable.charIterator()
CollectFloatToCharIterable.charIterator()
CollectIntToCharIterable.charIterator()
CollectLongToCharIterable.charIterator()
CollectShortToCharIterable.charIterator()
LazyCharIterableAdapter.charIterator()
ReverseCharIterable.charIterator()
SelectCharIterable.charIterator()
TapCharIterable.charIterator()
-
Uses of CharIterator in org.eclipse.collections.impl.primitive
Modifier and TypeMethodDescriptionSynchronizedCharIterable.charIterator()
Must be called in a synchronized block. -
Uses of CharIterator in org.eclipse.collections.impl.stack.mutable.primitive
Modifier and TypeMethodDescriptionSynchronizedCharStack.charIterator()
Must be called in a synchronized block.UnmodifiableCharStack.charIterator()
-
Uses of CharIterator in org.eclipse.collections.impl.stack.primitive
-
Uses of CharIterator in org.eclipse.collections.impl.string.immutable
-
Uses of CharIterator in org.eclipse.collections.impl.utility.internal.primitive
Modifier and TypeMethodDescriptionstatic boolean
CharIteratorIterate.allSatisfy
(CharIterator iterator, CharPredicate predicate) static boolean
CharIteratorIterate.anySatisfy
(CharIterator iterator, CharPredicate predicate) static <V,
R extends Collection<V>>
RCharIteratorIterate.collect
(CharIterator iterator, CharToObjectFunction<? extends V> function, R targetCollection) static int
CharIteratorIterate.count
(CharIterator iterator, CharPredicate predicate) static char
CharIteratorIterate.detectIfNone
(CharIterator iterator, CharPredicate predicate, char ifNone) static void
CharIteratorIterate.forEach
(CharIterator iterator, CharProcedure procedure) static <T> T
CharIteratorIterate.injectInto
(CharIterator iterator, T injectedValue, ObjectCharToObjectFunction<? super T, ? extends T> function) static char
CharIteratorIterate.max
(CharIterator iterator) static char
CharIteratorIterate.min
(CharIterator iterator) static boolean
CharIteratorIterate.noneSatisfy
(CharIterator iterator, CharPredicate predicate) static <R extends MutableCharCollection>
RCharIteratorIterate.reject
(CharIterator iterator, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIteratorIterate.select
(CharIterator iterator, CharPredicate predicate, R targetCollection) static long
CharIteratorIterate.sum
(CharIterator iterator)