public abstract class AbstractRichIterable<T> extends Object implements com.gs.collections.api.RichIterable<T>
| Constructor and Description |
|---|
AbstractRichIterable() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
com.gs.collections.api.LazyIterable<T> |
asLazy() |
<V,R extends Collection<V>> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> |
collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableByteCollection> |
collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableCharCollection> |
collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableDoubleCollection> |
collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableFloatCollection> |
collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction,
R target) |
<V,R extends Collection<V>> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableIntCollection> |
collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableLongCollection> |
collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableShortCollection> |
collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction,
R target) |
<P,V,R extends Collection<V>> |
collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter,
R target) |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> collection) |
boolean |
containsAllArguments(Object... elements) |
boolean |
containsAllIterable(Iterable<?> source) |
int |
count(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> int |
countWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
detect(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function0<? extends T> function) |
<P> T |
detectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
com.gs.collections.api.block.function.Function0<? extends T> function) |
<V,R extends Collection<V>> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
void |
forEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
<P> void |
forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
void |
forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
<V,R extends com.gs.collections.api.multimap.MutableMultimap<V,T>> |
groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<V,R extends com.gs.collections.api.multimap.MutableMultimap<V,T>> |
groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
<V,R extends com.gs.collections.api.map.MutableMap<V,T>> |
groupByUniqueKey(com.gs.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
double |
injectInto(double injectedValue,
com.gs.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T> function) |
float |
injectInto(float injectedValue,
com.gs.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T> function) |
int |
injectInto(int injectedValue,
com.gs.collections.api.block.function.primitive.IntObjectToIntFunction<? super T> function) |
<IV> IV |
injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function) |
long |
injectInto(long injectedValue,
com.gs.collections.api.block.function.primitive.LongObjectToLongFunction<? super T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
T |
max() |
T |
max(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
maxBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
T |
min() |
T |
min(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
minBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
boolean |
noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
notEmpty() |
<R extends Collection<T>> |
reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P,R extends Collection<T>> |
rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
<R extends Collection<T>> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P,R extends Collection<T>> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
<V> com.gs.collections.api.map.primitive.ObjectDoubleMap<V> |
sumByDouble(com.gs.collections.api.block.function.Function<T,V> groupBy,
com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
<V> com.gs.collections.api.map.primitive.ObjectDoubleMap<V> |
sumByFloat(com.gs.collections.api.block.function.Function<T,V> groupBy,
com.gs.collections.api.block.function.primitive.FloatFunction<? super T> function) |
<V> com.gs.collections.api.map.primitive.ObjectLongMap<V> |
sumByInt(com.gs.collections.api.block.function.Function<T,V> groupBy,
com.gs.collections.api.block.function.primitive.IntFunction<? super T> function) |
<V> com.gs.collections.api.map.primitive.ObjectLongMap<V> |
sumByLong(com.gs.collections.api.block.function.Function<T,V> groupBy,
com.gs.collections.api.block.function.primitive.LongFunction<? super T> function) |
double |
sumOfDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
double |
sumOfFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> function) |
long |
sumOfInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> function) |
long |
sumOfLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> function) |
Object[] |
toArray() |
<E> E[] |
toArray(E[] array) |
com.gs.collections.api.bag.MutableBag<T> |
toBag() |
com.gs.collections.api.list.MutableList<T> |
toList() |
<K,V> com.gs.collections.api.map.MutableMap<K,V> |
toMap(com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction,
com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction) |
com.gs.collections.api.set.MutableSet<T> |
toSet() |
com.gs.collections.api.bag.sorted.MutableSortedBag<T> |
toSortedBag() |
com.gs.collections.api.bag.sorted.MutableSortedBag<T> |
toSortedBag(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedBagBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
com.gs.collections.api.list.MutableList<T> |
toSortedList() |
com.gs.collections.api.list.MutableList<T> |
toSortedList(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedListBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
toSortedMap(Comparator<? super K> comparator,
com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction,
com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction) |
<K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> |
toSortedMap(com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction,
com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction) |
com.gs.collections.api.set.sorted.MutableSortedSet<T> |
toSortedSet() |
com.gs.collections.api.set.sorted.MutableSortedSet<T> |
toSortedSet(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedSetBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
String |
toString()
Returns a string representation of this collection.
|
<S,R extends Collection<com.gs.collections.api.tuple.Pair<T,S>>> |
zip(Iterable<S> that,
R target) |
<R extends Collection<com.gs.collections.api.tuple.Pair<T,Integer>>> |
zipWithIndex(R target) |
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitaggregateBy, aggregateInPlaceBy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, each, flatCollect, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, partition, partitionWith, reject, rejectWith, select, selectInstancesOf, selectWith, size, tap, zip, zipWithIndexforEach, iterator, spliteratorpublic boolean contains(Object object)
contains in interface com.gs.collections.api.RichIterable<T>public boolean containsAllIterable(Iterable<?> source)
containsAllIterable in interface com.gs.collections.api.RichIterable<T>public boolean containsAllArguments(Object... elements)
containsAllArguments in interface com.gs.collections.api.RichIterable<T>public Object[] toArray()
toArray in interface com.gs.collections.api.RichIterable<T>public <E> E[] toArray(E[] array)
toArray in interface com.gs.collections.api.RichIterable<T>public boolean isEmpty()
isEmpty in interface com.gs.collections.api.RichIterable<T>public boolean notEmpty()
notEmpty in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.list.MutableList<T> toList()
toList in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.list.MutableList<T> toSortedList()
toSortedList in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.list.MutableList<T> toSortedList(Comparator<? super T> comparator)
toSortedList in interface com.gs.collections.api.RichIterable<T>public <V extends Comparable<? super V>> com.gs.collections.api.list.MutableList<T> toSortedListBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
toSortedListBy in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.set.sorted.MutableSortedSet<T> toSortedSet()
toSortedSet in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.set.sorted.MutableSortedSet<T> toSortedSet(Comparator<? super T> comparator)
toSortedSet in interface com.gs.collections.api.RichIterable<T>public <V extends Comparable<? super V>> com.gs.collections.api.set.sorted.MutableSortedSet<T> toSortedSetBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
toSortedSetBy in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.set.MutableSet<T> toSet()
toSet in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.bag.MutableBag<T> toBag()
toBag in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag()
toSortedBag in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag(Comparator<? super T> comparator)
toSortedBag in interface com.gs.collections.api.RichIterable<T>public <V extends Comparable<? super V>> com.gs.collections.api.bag.sorted.MutableSortedBag<T> toSortedBagBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
toSortedBagBy in interface com.gs.collections.api.RichIterable<T>public <K,V> com.gs.collections.api.map.MutableMap<K,V> toMap(com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction, com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction)
toMap in interface com.gs.collections.api.RichIterable<T>public <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> toSortedMap(com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction, com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction)
toSortedMap in interface com.gs.collections.api.RichIterable<T>public <K,V> com.gs.collections.api.map.sorted.MutableSortedMap<K,V> toSortedMap(Comparator<? super K> comparator, com.gs.collections.api.block.function.Function<? super T,? extends K> keyFunction, com.gs.collections.api.block.function.Function<? super T,? extends V> valueFunction)
toSortedMap in interface com.gs.collections.api.RichIterable<T>public <R extends Collection<T>> R select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, R target)
select in interface com.gs.collections.api.RichIterable<T>public <P,R extends Collection<T>> R selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
selectWith in interface com.gs.collections.api.RichIterable<T>public <R extends Collection<T>> R reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, R target)
reject in interface com.gs.collections.api.RichIterable<T>public <P,R extends Collection<T>> R rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
rejectWith in interface com.gs.collections.api.RichIterable<T>public <V,R extends Collection<V>> R collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function, R target)
collect in interface com.gs.collections.api.RichIterable<T>public <P,V,R extends Collection<V>> R collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter, R target)
collectWith in interface com.gs.collections.api.RichIterable<T>public <V,R extends Collection<V>> R collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function<? super T,? extends V> function, R target)
collectIf in interface com.gs.collections.api.RichIterable<T>public T detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function0<? extends T> function)
detectIfNone in interface com.gs.collections.api.RichIterable<T>public <P> T detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, com.gs.collections.api.block.function.Function0<? extends T> function)
detectWithIfNone in interface com.gs.collections.api.RichIterable<T>public T min(Comparator<? super T> comparator)
min in interface com.gs.collections.api.RichIterable<T>public T max(Comparator<? super T> comparator)
max in interface com.gs.collections.api.RichIterable<T>public <V extends Comparable<? super V>> T minBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
minBy in interface com.gs.collections.api.RichIterable<T>public <V extends Comparable<? super V>> T maxBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
maxBy in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.LazyIterable<T> asLazy()
asLazy in interface com.gs.collections.api.RichIterable<T>public <V,R extends Collection<V>> R flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
flatCollect in interface com.gs.collections.api.RichIterable<T>public T detect(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
detect in interface com.gs.collections.api.RichIterable<T>public <P> T detectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface com.gs.collections.api.RichIterable<T>public boolean anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
anySatisfy in interface com.gs.collections.api.RichIterable<T>public boolean allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
allSatisfy in interface com.gs.collections.api.RichIterable<T>public boolean noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
noneSatisfy in interface com.gs.collections.api.RichIterable<T>public <P> boolean anySatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface com.gs.collections.api.RichIterable<T>public <P> boolean allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface com.gs.collections.api.RichIterable<T>public <P> boolean noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface com.gs.collections.api.RichIterable<T>public int count(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
count in interface com.gs.collections.api.RichIterable<T>public <P> int countWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface com.gs.collections.api.RichIterable<T>public <IV> IV injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function)
injectInto in interface com.gs.collections.api.RichIterable<T>public int injectInto(int injectedValue,
com.gs.collections.api.block.function.primitive.IntObjectToIntFunction<? super T> function)
injectInto in interface com.gs.collections.api.RichIterable<T>public long injectInto(long injectedValue,
com.gs.collections.api.block.function.primitive.LongObjectToLongFunction<? super T> function)
injectInto in interface com.gs.collections.api.RichIterable<T>public double injectInto(double injectedValue,
com.gs.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T> function)
injectInto in interface com.gs.collections.api.RichIterable<T>public float injectInto(float injectedValue,
com.gs.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T> function)
injectInto in interface com.gs.collections.api.RichIterable<T>public long sumOfInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> function)
sumOfInt in interface com.gs.collections.api.RichIterable<T>public double sumOfFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> function)
sumOfFloat in interface com.gs.collections.api.RichIterable<T>public long sumOfLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> function)
sumOfLong in interface com.gs.collections.api.RichIterable<T>public double sumOfDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sumOfDouble in interface com.gs.collections.api.RichIterable<T>public <V> com.gs.collections.api.map.primitive.ObjectLongMap<V> sumByInt(com.gs.collections.api.block.function.Function<T,V> groupBy, com.gs.collections.api.block.function.primitive.IntFunction<? super T> function)
sumByInt in interface com.gs.collections.api.RichIterable<T>public <V> com.gs.collections.api.map.primitive.ObjectDoubleMap<V> sumByFloat(com.gs.collections.api.block.function.Function<T,V> groupBy, com.gs.collections.api.block.function.primitive.FloatFunction<? super T> function)
sumByFloat in interface com.gs.collections.api.RichIterable<T>public <V> com.gs.collections.api.map.primitive.ObjectLongMap<V> sumByLong(com.gs.collections.api.block.function.Function<T,V> groupBy, com.gs.collections.api.block.function.primitive.LongFunction<? super T> function)
sumByLong in interface com.gs.collections.api.RichIterable<T>public <V> com.gs.collections.api.map.primitive.ObjectDoubleMap<V> sumByDouble(com.gs.collections.api.block.function.Function<T,V> groupBy, com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sumByDouble in interface com.gs.collections.api.RichIterable<T>public void forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface com.gs.collections.api.InternalIterable<T>public final void forEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface com.gs.collections.api.InternalIterable<T>public <P> void forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface com.gs.collections.api.InternalIterable<T>public <S,R extends Collection<com.gs.collections.api.tuple.Pair<T,S>>> R zip(Iterable<S> that, R target)
zip in interface com.gs.collections.api.RichIterable<T>public <R extends Collection<com.gs.collections.api.tuple.Pair<T,Integer>>> R zipWithIndex(R target)
zipWithIndex in interface com.gs.collections.api.RichIterable<T>public String toString()
This implementation creates an empty string buffer, appends a left square bracket, and iterates over the collection appending the string representation of each element in turn. After appending each element except the last, the string ", " is appended. Finally a right bracket is appended. A string is obtained from the string buffer, and returned.
public String makeString()
makeString in interface com.gs.collections.api.RichIterable<T>public String makeString(String separator)
makeString in interface com.gs.collections.api.RichIterable<T>public String makeString(String start, String separator, String end)
makeString in interface com.gs.collections.api.RichIterable<T>public void appendString(Appendable appendable)
appendString in interface com.gs.collections.api.RichIterable<T>public void appendString(Appendable appendable, String separator)
appendString in interface com.gs.collections.api.RichIterable<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface com.gs.collections.api.RichIterable<T>public boolean containsAll(Collection<?> collection)
containsAll in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction, R target)
collectBoolean in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableByteCollection> R collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction, R target)
collectByte in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableCharCollection> R collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction, R target)
collectChar in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction, R target)
collectDouble in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction, R target)
collectFloat in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableIntCollection> R collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction, R target)
collectInt in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableLongCollection> R collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction, R target)
collectLong in interface com.gs.collections.api.RichIterable<T>public <R extends com.gs.collections.api.collection.primitive.MutableShortCollection> R collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction, R target)
collectShort in interface com.gs.collections.api.RichIterable<T>public <V,R extends com.gs.collections.api.multimap.MutableMultimap<V,T>> R groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function, R target)
groupBy in interface com.gs.collections.api.RichIterable<T>public <V,R extends com.gs.collections.api.multimap.MutableMultimap<V,T>> R groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
groupByEach in interface com.gs.collections.api.RichIterable<T>Copyright © 2004–2016. All rights reserved.