@Immutable public abstract class AbstractLazyIterable<T> extends AbstractRichIterable<T> implements org.eclipse.collections.api.LazyIterable<T>
| Constructor and Description |
|---|
AbstractLazyIterable() |
| Modifier and Type | Method and Description |
|---|---|
<K,V> org.eclipse.collections.api.map.MapIterable<K,V> |
aggregateBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory,
org.eclipse.collections.api.block.function.Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> org.eclipse.collections.api.map.MapIterable<K,V> |
aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory,
org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super T> mutatingAggregator) |
org.eclipse.collections.api.LazyIterable<T> |
asLazy() |
org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.RichIterable<T>> |
chunk(int size) |
<V> org.eclipse.collections.api.LazyIterable<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.LazyBooleanIterable |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
org.eclipse.collections.api.LazyByteIterable |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
org.eclipse.collections.api.LazyCharIterable |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
org.eclipse.collections.api.LazyDoubleIterable |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
org.eclipse.collections.api.LazyFloatIterable |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> org.eclipse.collections.api.LazyIterable<V> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.LazyIntIterable |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
org.eclipse.collections.api.LazyLongIterable |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
org.eclipse.collections.api.LazyShortIterable |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,V> org.eclipse.collections.api.LazyIterable<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
org.eclipse.collections.api.LazyIterable<T> |
concatenate(Iterable<T> iterable) |
org.eclipse.collections.api.LazyIterable<T> |
distinct() |
org.eclipse.collections.api.LazyIterable<T> |
drop(int count) |
<V> org.eclipse.collections.api.LazyIterable<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
T |
getFirst() |
T |
getLast() |
<V> org.eclipse.collections.api.multimap.Multimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> org.eclipse.collections.api.multimap.Multimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V> org.eclipse.collections.api.map.MapIterable<V,T> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<R extends Collection<T>> |
into(R target) |
boolean |
isEmpty() |
org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.LazyIterable<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.LazyIterable<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.LazyIterable<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> org.eclipse.collections.api.LazyIterable<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.LazyIterable<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
int |
size() |
org.eclipse.collections.api.LazyIterable<T> |
take(int count) |
org.eclipse.collections.api.LazyIterable<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
<E> E[] |
toArray(E[] array) |
org.eclipse.collections.api.stack.MutableStack<T> |
toStack() |
<S> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that) |
org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, flatCollect, forEach, forEachWith, forEachWithIndex, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexforEach, forEachWith, forEachWithIndexforEach, iterator, spliteratorpublic org.eclipse.collections.api.LazyIterable<T> asLazy()
asLazy in interface org.eclipse.collections.api.RichIterable<T>asLazy in class AbstractRichIterable<T>public <R extends Collection<T>> R into(R target)
into in interface org.eclipse.collections.api.LazyIterable<T>public <E> E[] toArray(E[] array)
toArray in interface org.eclipse.collections.api.RichIterable<T>toArray in class AbstractRichIterable<T>public int size()
size in interface org.eclipse.collections.api.RichIterable<T>public boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.RichIterable<T>isEmpty in class AbstractRichIterable<T>public T getFirst()
public T getLast()
getLast in interface org.eclipse.collections.api.RichIterable<T>public org.eclipse.collections.api.LazyIterable<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
public <P> org.eclipse.collections.api.LazyIterable<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
public org.eclipse.collections.api.LazyIterable<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
public <P> org.eclipse.collections.api.LazyIterable<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
public org.eclipse.collections.api.partition.list.PartitionMutableList<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.RichIterable<T>public <P> org.eclipse.collections.api.partition.list.PartitionMutableList<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.RichIterable<T>public <S> org.eclipse.collections.api.LazyIterable<S> selectInstancesOf(Class<S> clazz)
public <V> org.eclipse.collections.api.LazyIterable<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
public org.eclipse.collections.api.LazyBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
public org.eclipse.collections.api.LazyByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
public org.eclipse.collections.api.LazyCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
public org.eclipse.collections.api.LazyDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
public org.eclipse.collections.api.LazyFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
public org.eclipse.collections.api.LazyIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
public org.eclipse.collections.api.LazyLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
public org.eclipse.collections.api.LazyShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
public <P,V> org.eclipse.collections.api.LazyIterable<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
public <V> org.eclipse.collections.api.LazyIterable<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
public org.eclipse.collections.api.LazyIterable<T> concatenate(Iterable<T> iterable)
concatenate in interface org.eclipse.collections.api.LazyIterable<T>public <V> org.eclipse.collections.api.LazyIterable<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
public org.eclipse.collections.api.LazyIterable<T> take(int count)
take in interface org.eclipse.collections.api.LazyIterable<T>public org.eclipse.collections.api.LazyIterable<T> drop(int count)
drop in interface org.eclipse.collections.api.LazyIterable<T>public org.eclipse.collections.api.LazyIterable<T> distinct()
distinct in interface org.eclipse.collections.api.LazyIterable<T>public org.eclipse.collections.api.stack.MutableStack<T> toStack()
public <V> org.eclipse.collections.api.multimap.Multimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.RichIterable<T>public <V> org.eclipse.collections.api.multimap.Multimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.RichIterable<T>public <V> org.eclipse.collections.api.map.MapIterable<V,T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupByUniqueKey in interface org.eclipse.collections.api.RichIterable<T>public <S> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
public org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
public org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.RichIterable<T>> chunk(int size)
public org.eclipse.collections.api.LazyIterable<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
public <K,V> org.eclipse.collections.api.map.MapIterable<K,V> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory, org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super T> mutatingAggregator)
aggregateInPlaceBy in interface org.eclipse.collections.api.RichIterable<T>public <K,V> org.eclipse.collections.api.map.MapIterable<K,V> aggregateBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory, org.eclipse.collections.api.block.function.Function2<? super V,? super T,? extends V> nonMutatingAggregator)
aggregateBy in interface org.eclipse.collections.api.RichIterable<T>Copyright © 2004–2017. All rights reserved.