CharIterable
, PrimitiveIterable
CharList
, CharStack
, ImmutableCharList
, ImmutableCharStack
, MutableCharList
, MutableCharStack
, ReversibleCharIterable
AbstractCharStack
, CharAdapter
, CharArrayList
, CharArrayStack
, SynchronizedCharList
, SynchronizedCharStack
, UnmodifiableCharList
, UnmodifiableCharStack
public interface OrderedCharIterable extends CharIterable
Modifier and Type | Method | Description |
---|---|---|
<V> OrderedIterable<V> |
collect(CharToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
void |
forEachWithIndex(CharIntProcedure procedure) |
|
char |
getFirst() |
|
int |
indexOf(char value) |
|
<T> T |
injectIntoWithIndex(T injectedValue,
ObjectCharIntToObjectFunction<? super T,? extends T> function) |
|
OrderedCharIterable |
reject(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
OrderedCharIterable |
select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, tap, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
char getFirst()
int indexOf(char value)
OrderedCharIterable select(CharPredicate predicate)
CharIterable
select
in interface CharIterable
OrderedCharIterable reject(CharPredicate predicate)
CharIterable
reject
in interface CharIterable
<V> OrderedIterable<V> collect(CharToObjectFunction<? extends V> function)
CharIterable
collect
in interface CharIterable
<T> T injectIntoWithIndex(T injectedValue, ObjectCharIntToObjectFunction<? super T,? extends T> function)
void forEachWithIndex(CharIntProcedure procedure)
Copyright © 2004–2017. All rights reserved.