public final class CompositeIterable<E> extends AbstractLazyIterable<E>
| Constructor and Description |
|---|
CompositeIterable() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(Iterable<E> iterable) |
boolean |
allSatisfy(Predicate<? super E> predicate) |
boolean |
anySatisfy(Predicate<? super E> predicate) |
E |
detect(Predicate<? super E> predicate) |
Optional<E> |
detectOptional(Predicate<? super E> predicate) |
void |
each(Procedure<? super E> procedure) |
<P> void |
forEachWith(Procedure2<? super E,? super P> procedure,
P parameter) |
void |
forEachWithIndex(ObjectIntProcedure<? super E> objectIntProcedure) |
Iterator<E> |
iterator() |
boolean |
noneSatisfy(Predicate<? super E> predicate) |
int |
size() |
static <T> CompositeIterable<T> |
with(Iterable<T>... iterables) |
asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, concatenate, distinct, drop, dropWhile, flatCollect, getFirst, getLast, getOnly, groupBy, groupByEach, groupByUniqueKey, into, isEmpty, maxByOptional, maxOptional, maxOptional, minByOptional, minOptional, minOptional, partition, partitionWith, reject, rejectWith, select, selectInstancesOf, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, take, takeWhile, tap, toArray, toStack, zip, zipWithIndexallSatisfyWith, anySatisfyWith, appendString, appendString, collect, collectIf, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countByEach, countWith, detectWith, detectWithIfNone, detectWithOptional, flatCollect, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, max, max, maxBy, min, min, minBy, noneSatisfyWith, reject, rejectWith, select, selectWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toBag, toBiMap, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitflatCollectWithaggregateBy, aggregateBy, aggregateInPlaceBy, allSatisfyWith, anySatisfyWith, appendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, containsAny, containsAnyIterable, containsBy, containsNone, containsNoneIterable, count, countBy, countBy, countByEach, countByEach, countByWith, countByWith, countWith, detectIfNone, detectWith, detectWithIfNone, detectWithOptional, flatCollect, flatCollectBoolean, flatCollectByte, flatCollectChar, flatCollectDouble, flatCollectFloat, flatCollectInt, flatCollectLong, flatCollectShort, flatCollectWith, forEach, getAny, groupBy, groupByAndCollect, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, makeString, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfyWith, notEmpty, reduce, reduceInPlace, reduceInPlace, reject, rejectWith, select, selectWith, summarizeDouble, summarizeFloat, summarizeInt, summarizeLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toBag, toBiMap, toImmutableBag, toImmutableBiMap, toImmutableList, toImmutableMap, toImmutableSet, toImmutableSortedBag, toImmutableSortedBag, toImmutableSortedBagBy, toImmutableSortedList, toImmutableSortedList, toImmutableSortedListBy, toImmutableSortedSet, toImmutableSortedSet, toImmutableSortedSetBy, toList, toMap, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexforEachspliteratorpublic static <T> CompositeIterable<T> with(Iterable<T>... iterables)
public void forEachWithIndex(ObjectIntProcedure<? super E> objectIntProcedure)
forEachWithIndex in interface InternalIterable<E>forEachWithIndex in class AbstractRichIterable<E>public <P> void forEachWith(Procedure2<? super E,? super P> procedure, P parameter)
forEachWith in interface InternalIterable<E>forEachWith in class AbstractRichIterable<E>public boolean anySatisfy(Predicate<? super E> predicate)
anySatisfy in interface RichIterable<E>anySatisfy in class AbstractRichIterable<E>public boolean allSatisfy(Predicate<? super E> predicate)
allSatisfy in interface RichIterable<E>allSatisfy in class AbstractRichIterable<E>public boolean noneSatisfy(Predicate<? super E> predicate)
noneSatisfy in interface RichIterable<E>noneSatisfy in class AbstractRichIterable<E>public E detect(Predicate<? super E> predicate)
detect in interface RichIterable<E>detect in class AbstractRichIterable<E>public Optional<E> detectOptional(Predicate<? super E> predicate)
detectOptional in interface RichIterable<E>detectOptional in class AbstractRichIterable<E>public int size()
size in interface RichIterable<E>size in class AbstractLazyIterable<E>Copyright © 2004–2022. All rights reserved.