public abstract class AbstractBiMap<K,V> extends Object implements com.gs.collections.api.bimap.BiMap<K,V>
| Constructor and Description |
|---|
AbstractBiMap() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
boolean |
anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
anySatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? 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<V> |
asLazy() |
com.gs.collections.api.RichIterable<com.gs.collections.api.RichIterable<V>> |
chunk(int size) |
<VV,R extends Collection<VV>> |
collect(com.gs.collections.api.block.function.Function<? super V,? extends VV> function,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> |
collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableByteCollection> |
collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableCharCollection> |
collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super V> charFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableDoubleCollection> |
collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableFloatCollection> |
collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction,
R target) |
<VV,R extends Collection<VV>> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super V> predicate,
com.gs.collections.api.block.function.Function<? super V,? extends VV> function,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableIntCollection> |
collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super V> intFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableLongCollection> |
collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super V> longFunction,
R target) |
<R extends com.gs.collections.api.collection.primitive.MutableShortCollection> |
collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction,
R target) |
<P,VV,R extends Collection<VV>> |
collectWith(com.gs.collections.api.block.function.Function2<? super V,? super P,? extends VV> function,
P parameter,
R targetCollection) |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> source) |
boolean |
containsAllArguments(Object... elements) |
boolean |
containsAllIterable(Iterable<?> source) |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
int |
count(com.gs.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> int |
countWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
V |
detect(com.gs.collections.api.block.predicate.Predicate<? super V> predicate) |
com.gs.collections.api.tuple.Pair<K,V> |
detect(com.gs.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
V |
detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super V> predicate,
com.gs.collections.api.block.function.Function0<? extends V> function) |
<P> V |
detectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
<P> V |
detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter,
com.gs.collections.api.block.function.Function0<? extends V> function) |
void |
each(com.gs.collections.api.block.procedure.Procedure<? super V> procedure) |
boolean |
equals(Object obj) |
<VV,R extends Collection<VV>> |
flatCollect(com.gs.collections.api.block.function.Function<? super V,? extends Iterable<VV>> function,
R target) |
void |
forEach(com.gs.collections.api.block.procedure.Procedure<? super V> procedure) |
void |
forEachKey(com.gs.collections.api.block.procedure.Procedure<? super K> procedure) |
void |
forEachKeyValue(com.gs.collections.api.block.procedure.Procedure2<? super K,? super V> procedure) |
void |
forEachValue(com.gs.collections.api.block.procedure.Procedure<? super V> procedure) |
<P> void |
forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super V,? super P> procedure,
P parameter) |
void |
forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure) |
V |
get(Object key) |
V |
getFirst() |
V |
getIfAbsent(K key,
com.gs.collections.api.block.function.Function0<? extends V> function) |
V |
getIfAbsentValue(K key,
V value) |
<P> V |
getIfAbsentWith(K key,
com.gs.collections.api.block.function.Function<? super P,? extends V> function,
P parameter) |
V |
getLast() |
<VV,R extends com.gs.collections.api.multimap.MutableMultimap<VV,V>> |
groupBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function,
R target) |
<VV,R extends com.gs.collections.api.multimap.MutableMultimap<VV,V>> |
groupByEach(com.gs.collections.api.block.function.Function<? super V,? extends Iterable<VV>> function,
R target) |
<VV,R extends com.gs.collections.api.map.MutableMap<VV,V>> |
groupByUniqueKey(com.gs.collections.api.block.function.Function<? super V,? extends VV> function,
R target) |
int |
hashCode() |
<A> A |
ifPresentApply(K key,
com.gs.collections.api.block.function.Function<? super V,? extends A> function) |
double |
injectInto(double injectedValue,
com.gs.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super V> function) |
float |
injectInto(float injectedValue,
com.gs.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super V> function) |
int |
injectInto(int injectedValue,
com.gs.collections.api.block.function.primitive.IntObjectToIntFunction<? super V> function) |
<IV> IV |
injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super V,? extends IV> function) |
long |
injectInto(long injectedValue,
com.gs.collections.api.block.function.primitive.LongObjectToLongFunction<? super V> function) |
boolean |
isEmpty() |
com.gs.collections.api.RichIterable<K> |
keysView() |
com.gs.collections.api.RichIterable<com.gs.collections.api.tuple.Pair<K,V>> |
keyValuesView() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
V |
max() |
V |
max(Comparator<? super V> comparator) |
<VV extends Comparable<? super VV>> |
maxBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function) |
V |
min() |
V |
min(Comparator<? super V> comparator) |
<VV extends Comparable<? super VV>> |
minBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function) |
boolean |
noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> boolean |
noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
boolean |
notEmpty() |
<R extends Collection<V>> |
reject(com.gs.collections.api.block.predicate.Predicate<? super V> predicate,
R target) |
<P,R extends Collection<V>> |
rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter,
R targetCollection) |
<R extends Collection<V>> |
select(com.gs.collections.api.block.predicate.Predicate<? super V> predicate,
R target) |
<P,R extends Collection<V>> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter,
R targetCollection) |
int |
size() |
<V1> com.gs.collections.api.map.primitive.ObjectDoubleMap<V1> |
sumByDouble(com.gs.collections.api.block.function.Function<V,V1> groupBy,
com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> function) |
<V1> com.gs.collections.api.map.primitive.ObjectDoubleMap<V1> |
sumByFloat(com.gs.collections.api.block.function.Function<V,V1> groupBy,
com.gs.collections.api.block.function.primitive.FloatFunction<? super V> function) |
<V1> com.gs.collections.api.map.primitive.ObjectLongMap<V1> |
sumByInt(com.gs.collections.api.block.function.Function<V,V1> groupBy,
com.gs.collections.api.block.function.primitive.IntFunction<? super V> function) |
<V1> com.gs.collections.api.map.primitive.ObjectLongMap<V1> |
sumByLong(com.gs.collections.api.block.function.Function<V,V1> groupBy,
com.gs.collections.api.block.function.primitive.LongFunction<? super V> function) |
double |
sumOfDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> function) |
double |
sumOfFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super V> function) |
long |
sumOfInt(com.gs.collections.api.block.function.primitive.IntFunction<? super V> function) |
long |
sumOfLong(com.gs.collections.api.block.function.primitive.LongFunction<? super V> function) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
com.gs.collections.api.bag.MutableBag<V> |
toBag() |
com.gs.collections.api.list.MutableList<V> |
toList() |
<NK,NV> com.gs.collections.api.map.MutableMap<NK,NV> |
toMap(com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction,
com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction) |
com.gs.collections.api.set.MutableSet<V> |
toSet() |
com.gs.collections.api.bag.sorted.MutableSortedBag<V> |
toSortedBag() |
com.gs.collections.api.bag.sorted.MutableSortedBag<V> |
toSortedBag(Comparator<? super V> comparator) |
<VV extends Comparable<? super VV>> |
toSortedBagBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function) |
com.gs.collections.api.list.MutableList<V> |
toSortedList() |
com.gs.collections.api.list.MutableList<V> |
toSortedList(Comparator<? super V> comparator) |
<VV extends Comparable<? super VV>> |
toSortedListBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function) |
<NK,NV> com.gs.collections.api.map.sorted.MutableSortedMap<NK,NV> |
toSortedMap(Comparator<? super NK> comparator,
com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction,
com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction) |
<NK,NV> com.gs.collections.api.map.sorted.MutableSortedMap<NK,NV> |
toSortedMap(com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction,
com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction) |
com.gs.collections.api.set.sorted.MutableSortedSet<V> |
toSortedSet() |
com.gs.collections.api.set.sorted.MutableSortedSet<V> |
toSortedSet(Comparator<? super V> comparator) |
<VV extends Comparable<? super VV>> |
toSortedSetBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function) |
String |
toString() |
com.gs.collections.api.RichIterable<V> |
valuesView() |
<S,R extends Collection<com.gs.collections.api.tuple.Pair<V,S>>> |
zip(Iterable<S> that,
R target) |
<R extends Collection<com.gs.collections.api.tuple.Pair<V,Integer>>> |
zipWithIndex(R target) |
collect, collectValues, flip, flipUniqueValues, groupBy, groupByEach, groupByUniqueKey, inverse, partition, partitionWith, reject, reject, rejectWith, select, select, selectInstancesOf, selectWith, tap, toImmutable, zip, zipWithIndexaggregateBy, aggregateInPlaceBy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, flatCollectforEach, iterator, spliteratorpublic boolean equals(Object obj)
public int hashCode()
public int size()
size in interface com.gs.collections.api.RichIterable<V>public V getFirst()
getFirst in interface com.gs.collections.api.RichIterable<V>public V getLast()
getLast in interface com.gs.collections.api.RichIterable<V>public V getIfAbsent(K key, com.gs.collections.api.block.function.Function0<? extends V> function)
public <P> V getIfAbsentWith(K key, com.gs.collections.api.block.function.Function<? super P,? extends V> function, P parameter)
public <A> A ifPresentApply(K key, com.gs.collections.api.block.function.Function<? super V,? extends A> function)
public boolean isEmpty()
isEmpty in interface com.gs.collections.api.RichIterable<V>public boolean notEmpty()
notEmpty in interface com.gs.collections.api.RichIterable<V>public boolean contains(Object object)
contains in interface com.gs.collections.api.RichIterable<V>public boolean containsKey(Object key)
public boolean containsValue(Object value)
public boolean containsAllIterable(Iterable<?> source)
containsAllIterable in interface com.gs.collections.api.RichIterable<V>public boolean containsAll(Collection<?> source)
containsAll in interface com.gs.collections.api.RichIterable<V>public boolean containsAllArguments(Object... elements)
containsAllArguments in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.RichIterable<K> keysView()
public com.gs.collections.api.RichIterable<V> valuesView()
public com.gs.collections.api.RichIterable<com.gs.collections.api.tuple.Pair<K,V>> keyValuesView()
public com.gs.collections.api.list.MutableList<V> toList()
toList in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.list.MutableList<V> toSortedList()
toSortedList in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.list.MutableList<V> toSortedList(Comparator<? super V> comparator)
toSortedList in interface com.gs.collections.api.RichIterable<V>public <VV extends Comparable<? super VV>> com.gs.collections.api.list.MutableList<V> toSortedListBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function)
toSortedListBy in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.set.MutableSet<V> toSet()
toSet in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.set.sorted.MutableSortedSet<V> toSortedSet()
toSortedSet in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.set.sorted.MutableSortedSet<V> toSortedSet(Comparator<? super V> comparator)
toSortedSet in interface com.gs.collections.api.RichIterable<V>public <VV extends Comparable<? super VV>> com.gs.collections.api.set.sorted.MutableSortedSet<V> toSortedSetBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function)
toSortedSetBy in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.bag.MutableBag<V> toBag()
toBag in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag()
toSortedBag in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag(Comparator<? super V> comparator)
toSortedBag in interface com.gs.collections.api.RichIterable<V>public <VV extends Comparable<? super VV>> com.gs.collections.api.bag.sorted.MutableSortedBag<V> toSortedBagBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function)
toSortedBagBy in interface com.gs.collections.api.RichIterable<V>public <NK,NV> com.gs.collections.api.map.MutableMap<NK,NV> toMap(com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction, com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction)
toMap in interface com.gs.collections.api.RichIterable<V>public <NK,NV> com.gs.collections.api.map.sorted.MutableSortedMap<NK,NV> toSortedMap(com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction, com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction)
toSortedMap in interface com.gs.collections.api.RichIterable<V>public <NK,NV> com.gs.collections.api.map.sorted.MutableSortedMap<NK,NV> toSortedMap(Comparator<? super NK> comparator, com.gs.collections.api.block.function.Function<? super V,? extends NK> keyFunction, com.gs.collections.api.block.function.Function<? super V,? extends NV> valueFunction)
toSortedMap in interface com.gs.collections.api.RichIterable<V>public Object[] toArray()
toArray in interface com.gs.collections.api.RichIterable<V>public <T> T[] toArray(T[] a)
toArray in interface com.gs.collections.api.RichIterable<V>public String toString()
public String makeString()
makeString in interface com.gs.collections.api.RichIterable<V>public String makeString(String separator)
makeString in interface com.gs.collections.api.RichIterable<V>public String makeString(String start, String separator, String end)
makeString in interface com.gs.collections.api.RichIterable<V>public void appendString(Appendable appendable)
appendString in interface com.gs.collections.api.RichIterable<V>public void appendString(Appendable appendable, String separator)
appendString in interface com.gs.collections.api.RichIterable<V>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface com.gs.collections.api.RichIterable<V>public void forEachValue(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
public void forEachKey(com.gs.collections.api.block.procedure.Procedure<? super K> procedure)
public void forEachKeyValue(com.gs.collections.api.block.procedure.Procedure2<? super K,? super V> procedure)
public void each(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
each in interface com.gs.collections.api.RichIterable<V>public void forEach(com.gs.collections.api.block.procedure.Procedure<? super V> procedure)
forEach in interface com.gs.collections.api.InternalIterable<V>public void forEachWithIndex(com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure)
forEachWithIndex in interface com.gs.collections.api.InternalIterable<V>public <P> void forEachWith(com.gs.collections.api.block.procedure.Procedure2<? super V,? super P> procedure, P parameter)
forEachWith in interface com.gs.collections.api.InternalIterable<V>public com.gs.collections.api.LazyIterable<V> asLazy()
asLazy in interface com.gs.collections.api.RichIterable<V>public int count(com.gs.collections.api.block.predicate.Predicate<? super V> predicate)
count in interface com.gs.collections.api.RichIterable<V>public <P> int countWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
countWith in interface com.gs.collections.api.RichIterable<V>public V min(Comparator<? super V> comparator)
min in interface com.gs.collections.api.RichIterable<V>public <VV extends Comparable<? super VV>> V minBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function)
minBy in interface com.gs.collections.api.RichIterable<V>public V max(Comparator<? super V> comparator)
max in interface com.gs.collections.api.RichIterable<V>public <VV extends Comparable<? super VV>> V maxBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function)
maxBy in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.tuple.Pair<K,V> detect(com.gs.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
public V detect(com.gs.collections.api.block.predicate.Predicate<? super V> predicate)
detect in interface com.gs.collections.api.RichIterable<V>public <P> V detectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
detectWith in interface com.gs.collections.api.RichIterable<V>public V detectIfNone(com.gs.collections.api.block.predicate.Predicate<? super V> predicate, com.gs.collections.api.block.function.Function0<? extends V> function)
detectIfNone in interface com.gs.collections.api.RichIterable<V>public <P> V detectWithIfNone(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter, com.gs.collections.api.block.function.Function0<? extends V> function)
detectWithIfNone in interface com.gs.collections.api.RichIterable<V>public boolean anySatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate)
anySatisfy in interface com.gs.collections.api.RichIterable<V>public <P> boolean anySatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
anySatisfyWith in interface com.gs.collections.api.RichIterable<V>public boolean allSatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate)
allSatisfy in interface com.gs.collections.api.RichIterable<V>public <P> boolean allSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
allSatisfyWith in interface com.gs.collections.api.RichIterable<V>public boolean noneSatisfy(com.gs.collections.api.block.predicate.Predicate<? super V> predicate)
noneSatisfy in interface com.gs.collections.api.RichIterable<V>public <P> boolean noneSatisfyWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
noneSatisfyWith in interface com.gs.collections.api.RichIterable<V>public <VV,R extends Collection<VV>> R collect(com.gs.collections.api.block.function.Function<? super V,? extends VV> function, R target)
collect in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction, R target)
collectBoolean in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableByteCollection> R collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction, R target)
collectByte in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableCharCollection> R collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super V> charFunction, R target)
collectChar in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction, R target)
collectDouble in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction, R target)
collectFloat in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableIntCollection> R collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super V> intFunction, R target)
collectInt in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableLongCollection> R collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super V> longFunction, R target)
collectLong in interface com.gs.collections.api.RichIterable<V>public <R extends com.gs.collections.api.collection.primitive.MutableShortCollection> R collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction, R target)
collectShort in interface com.gs.collections.api.RichIterable<V>public <P,VV,R extends Collection<VV>> R collectWith(com.gs.collections.api.block.function.Function2<? super V,? super P,? extends VV> function, P parameter, R targetCollection)
collectWith in interface com.gs.collections.api.RichIterable<V>public <VV,R extends Collection<VV>> R collectIf(com.gs.collections.api.block.predicate.Predicate<? super V> predicate, com.gs.collections.api.block.function.Function<? super V,? extends VV> function, R target)
collectIf in interface com.gs.collections.api.RichIterable<V>public <VV,R extends Collection<VV>> R flatCollect(com.gs.collections.api.block.function.Function<? super V,? extends Iterable<VV>> function, R target)
flatCollect in interface com.gs.collections.api.RichIterable<V>public <R extends Collection<V>> R select(com.gs.collections.api.block.predicate.Predicate<? super V> predicate, R target)
select in interface com.gs.collections.api.RichIterable<V>public <P,R extends Collection<V>> R selectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)
selectWith in interface com.gs.collections.api.RichIterable<V>public <R extends Collection<V>> R reject(com.gs.collections.api.block.predicate.Predicate<? super V> predicate, R target)
reject in interface com.gs.collections.api.RichIterable<V>public <P,R extends Collection<V>> R rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter, R targetCollection)
rejectWith in interface com.gs.collections.api.RichIterable<V>public <S,R extends Collection<com.gs.collections.api.tuple.Pair<V,S>>> R zip(Iterable<S> that, R target)
zip in interface com.gs.collections.api.RichIterable<V>public <R extends Collection<com.gs.collections.api.tuple.Pair<V,Integer>>> R zipWithIndex(R target)
zipWithIndex in interface com.gs.collections.api.RichIterable<V>public com.gs.collections.api.RichIterable<com.gs.collections.api.RichIterable<V>> chunk(int size)
chunk in interface com.gs.collections.api.RichIterable<V>public <VV,R extends com.gs.collections.api.multimap.MutableMultimap<VV,V>> R groupBy(com.gs.collections.api.block.function.Function<? super V,? extends VV> function, R target)
groupBy in interface com.gs.collections.api.RichIterable<V>public <VV,R extends com.gs.collections.api.multimap.MutableMultimap<VV,V>> R groupByEach(com.gs.collections.api.block.function.Function<? super V,? extends Iterable<VV>> function, R target)
groupByEach in interface com.gs.collections.api.RichIterable<V>public <VV,R extends com.gs.collections.api.map.MutableMap<VV,V>> R groupByUniqueKey(com.gs.collections.api.block.function.Function<? super V,? extends VV> function, R target)
groupByUniqueKey in interface com.gs.collections.api.RichIterable<V>public <IV> IV injectInto(IV injectedValue,
com.gs.collections.api.block.function.Function2<? super IV,? super V,? extends IV> function)
injectInto in interface com.gs.collections.api.RichIterable<V>public int injectInto(int injectedValue,
com.gs.collections.api.block.function.primitive.IntObjectToIntFunction<? super V> function)
injectInto in interface com.gs.collections.api.RichIterable<V>public long injectInto(long injectedValue,
com.gs.collections.api.block.function.primitive.LongObjectToLongFunction<? super V> function)
injectInto in interface com.gs.collections.api.RichIterable<V>public float injectInto(float injectedValue,
com.gs.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super V> function)
injectInto in interface com.gs.collections.api.RichIterable<V>public double injectInto(double injectedValue,
com.gs.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super V> function)
injectInto in interface com.gs.collections.api.RichIterable<V>public long sumOfInt(com.gs.collections.api.block.function.primitive.IntFunction<? super V> function)
sumOfInt in interface com.gs.collections.api.RichIterable<V>public double sumOfFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super V> function)
sumOfFloat in interface com.gs.collections.api.RichIterable<V>public long sumOfLong(com.gs.collections.api.block.function.primitive.LongFunction<? super V> function)
sumOfLong in interface com.gs.collections.api.RichIterable<V>public double sumOfDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> function)
sumOfDouble in interface com.gs.collections.api.RichIterable<V>public <V1> com.gs.collections.api.map.primitive.ObjectLongMap<V1> sumByInt(com.gs.collections.api.block.function.Function<V,V1> groupBy, com.gs.collections.api.block.function.primitive.IntFunction<? super V> function)
sumByInt in interface com.gs.collections.api.RichIterable<V>public <V1> com.gs.collections.api.map.primitive.ObjectDoubleMap<V1> sumByFloat(com.gs.collections.api.block.function.Function<V,V1> groupBy, com.gs.collections.api.block.function.primitive.FloatFunction<? super V> function)
sumByFloat in interface com.gs.collections.api.RichIterable<V>public <V1> com.gs.collections.api.map.primitive.ObjectLongMap<V1> sumByLong(com.gs.collections.api.block.function.Function<V,V1> groupBy, com.gs.collections.api.block.function.primitive.LongFunction<? super V> function)
sumByLong in interface com.gs.collections.api.RichIterable<V>public <V1> com.gs.collections.api.map.primitive.ObjectDoubleMap<V1> sumByDouble(com.gs.collections.api.block.function.Function<V,V1> groupBy, com.gs.collections.api.block.function.primitive.DoubleFunction<? super V> function)
sumByDouble in interface com.gs.collections.api.RichIterable<V>Copyright © 2004–2016. All rights reserved.