@Immutable public abstract class AbstractImmutableSortedMap<K,V> extends AbstractMapIterable<K,V> implements org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>, SortedMap<K,V>
| Constructor and Description |
|---|
AbstractImmutableSortedMap() |
| Modifier and Type | Method and Description |
|---|---|
<K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> |
aggregateBy(org.eclipse.collections.api.block.function.Function<? super V,? extends K2> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V2> zeroValueFactory,
org.eclipse.collections.api.block.function.Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> |
aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V,? extends K2> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V2> zeroValueFactory,
org.eclipse.collections.api.block.procedure.Procedure2<? super V2,? super V> mutatingAggregator) |
org.eclipse.collections.api.LazyIterable<V> |
asReversed() |
SortedMap<K,V> |
castToMap() |
SortedMap<K,V> |
castToSortedMap() |
void |
clear() |
<R> org.eclipse.collections.api.list.ImmutableList<R> |
collect(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function) |
<K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> |
collect(org.eclipse.collections.api.block.function.Function2<? super K,? super V,org.eclipse.collections.api.tuple.Pair<K2,V2>> function) |
org.eclipse.collections.api.list.primitive.ImmutableBooleanList |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction) |
org.eclipse.collections.api.list.primitive.ImmutableByteList |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction) |
org.eclipse.collections.api.list.primitive.ImmutableCharList |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V> charFunction) |
org.eclipse.collections.api.list.primitive.ImmutableDoubleList |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction) |
org.eclipse.collections.api.list.primitive.ImmutableFloatList |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction) |
<R> org.eclipse.collections.api.list.ImmutableList<R> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate,
org.eclipse.collections.api.block.function.Function<? super V,? extends R> function) |
org.eclipse.collections.api.list.primitive.ImmutableIntList |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V> intFunction) |
org.eclipse.collections.api.list.primitive.ImmutableLongList |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V> longFunction) |
org.eclipse.collections.api.list.primitive.ImmutableShortList |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction) |
<R> org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,R> |
collectValues(org.eclipse.collections.api.block.function.Function2<? super K,? super V,? extends R> function) |
<P,VV> org.eclipse.collections.api.list.ImmutableList<VV> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super V,? super P,? extends VV> function,
P parameter) |
<S> boolean |
corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super S> predicate) |
org.eclipse.collections.api.tuple.Pair<K,V> |
detect(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
int |
detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
int |
detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.list.ImmutableList<V> |
distinct() |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<R> org.eclipse.collections.api.list.ImmutableList<R> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function) |
org.eclipse.collections.api.multimap.sortedset.ImmutableSortedSetMultimap<V,K> |
flip() |
void |
forEach(int startIndex,
int endIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure) |
<R> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<R,V> |
groupBy(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function) |
<R> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<R,V> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function) |
<V1> org.eclipse.collections.api.map.ImmutableMap<V1,V> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V,? extends V1> function) |
SortedMap<K,V> |
headMap(K toKey) |
int |
indexOf(Object object) |
Iterator<V> |
iterator() |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
newWithAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>... keyValuePairs) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
newWithAllKeyValues(Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>> keyValues) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
newWithKeyValue(K key,
V value) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
newWithoutAllKeys(Iterable<? extends K> keys) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
newWithoutKey(K key) |
org.eclipse.collections.api.partition.list.PartitionImmutableList<V> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.partition.list.PartitionImmutableList<V> |
partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> org.eclipse.collections.api.partition.list.PartitionImmutableList<V> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> map) |
org.eclipse.collections.api.list.ImmutableList<V> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
<P> org.eclipse.collections.api.list.ImmutableList<V> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
V |
remove(Object key) |
void |
reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
org.eclipse.collections.api.list.ImmutableList<V> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
select(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
<S> org.eclipse.collections.api.list.ImmutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.list.ImmutableList<V> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
SortedMap<K,V> |
subMap(K fromKey,
K toKey) |
SortedMap<K,V> |
tailMap(K fromKey) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
toImmutable() |
org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> |
toReversed() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
toSortedMap() |
org.eclipse.collections.api.stack.MutableStack<V> |
toStack() |
<S> org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.Pair<V,S>> |
zip(Iterable<S> that) |
org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.Pair<V,Integer>> |
zipWithIndex() |
allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, asLazy, chunk, contains, detect, detectIfNone, detectWith, detectWithIfNone, each, forEachKey, forEachValue, forEachWith, forEachWithIndex, getFirst, getIfAbsent, getIfAbsentValue, getIfAbsentWith, getLast, ifPresentApply, noneSatisfy, noneSatisfyWith, toArray, toArrayappendString, appendString, appendString, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, containsAll, containsAllArguments, containsAllIterable, count, countWith, flatCollect, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, notEmpty, reject, rejectWith, select, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitcomparator, drop, takeforEachWithIndex, getFirst, getLast, max, min, zip, zipWithIndexallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, 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, isEmpty, makeString, makeString, makeString, max, maxBy, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetByforEach, spliteratorflipUniqueValuescontainsKey, containsValue, equals, forEachKey, forEachKeyValue, forEachValue, get, getIfAbsent, getIfAbsentValue, getIfAbsentWith, hashCode, ifPresentApply, keysView, keyValuesView, toString, valuesViewcomparator, entrySet, firstKey, keySet, lastKey, valuescompute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, replace, replace, replaceAll, sizepublic org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> newWithKeyValue(K key, V value)
public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> newWithAllKeyValues(Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>> keyValues)
public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> newWithAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>... keyValuePairs)
public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> newWithoutKey(K key)
public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> newWithoutAllKeys(Iterable<? extends K> keys)
public org.eclipse.collections.api.multimap.sortedset.ImmutableSortedSetMultimap<V,K> flip()
flip in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>flip in interface org.eclipse.collections.api.map.MapIterable<K,V>flip in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>flip in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
tap in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>tap in interface org.eclipse.collections.api.map.MapIterable<K,V>tap in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>tap in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>tap in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.ImmutableList<V> select(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
select in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>select in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>select in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>select in interface org.eclipse.collections.api.ordered.OrderedIterable<V>select in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>select in interface org.eclipse.collections.api.RichIterable<V>public <P> org.eclipse.collections.api.list.ImmutableList<V> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>selectWith in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>selectWith in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>selectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<V>selectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>selectWith in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> select(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
select in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>select in interface org.eclipse.collections.api.map.MapIterable<K,V>select in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>select in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.list.ImmutableList<V> reject(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
reject in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>reject in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>reject in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>reject in interface org.eclipse.collections.api.ordered.OrderedIterable<V>reject in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>reject in interface org.eclipse.collections.api.RichIterable<V>public <P> org.eclipse.collections.api.list.ImmutableList<V> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>rejectWith in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>rejectWith in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>rejectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<V>rejectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>rejectWith in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
reject in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>reject in interface org.eclipse.collections.api.map.MapIterable<K,V>reject in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>reject in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.partition.list.PartitionImmutableList<V> partition(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
partition in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>partition in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>partition in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>partition in interface org.eclipse.collections.api.ordered.OrderedIterable<V>partition in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>partition in interface org.eclipse.collections.api.RichIterable<V>public <P> org.eclipse.collections.api.partition.list.PartitionImmutableList<V> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>partitionWith in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>partitionWith in interface org.eclipse.collections.api.ordered.OrderedIterable<V>partitionWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>partitionWith in interface org.eclipse.collections.api.RichIterable<V>public <S> org.eclipse.collections.api.list.ImmutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>selectInstancesOf in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>selectInstancesOf in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>selectInstancesOf in interface org.eclipse.collections.api.ordered.OrderedIterable<V>selectInstancesOf in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>selectInstancesOf in interface org.eclipse.collections.api.RichIterable<V>public <R> org.eclipse.collections.api.list.ImmutableList<R> collect(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function)
collect in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collect in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collect in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collect in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collect in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectBoolean in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectBoolean in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectBoolean in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectBoolean in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction)
collectByte in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectByte in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectByte in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectByte in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectByte in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V> charFunction)
collectChar in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectChar in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectChar in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectChar in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectChar in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction)
collectDouble in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectDouble in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectDouble in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectDouble in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectDouble in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction)
collectFloat in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectFloat in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectFloat in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectFloat in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectFloat in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V> intFunction)
collectInt in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectInt in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectInt in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectInt in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectInt in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V> longFunction)
collectLong in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectLong in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectLong in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectLong in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectLong in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.primitive.ImmutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction)
collectShort in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectShort in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectShort in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectShort in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectShort in interface org.eclipse.collections.api.RichIterable<V>public <K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> collect(org.eclipse.collections.api.block.function.Function2<? super K,? super V,org.eclipse.collections.api.tuple.Pair<K2,V2>> function)
public <P,VV> org.eclipse.collections.api.list.ImmutableList<VV> collectWith(org.eclipse.collections.api.block.function.Function2<? super V,? super P,? extends VV> function, P parameter)
collectWith in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectWith in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectWith in interface org.eclipse.collections.api.RichIterable<V>public <R> org.eclipse.collections.api.list.ImmutableList<R> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate, org.eclipse.collections.api.block.function.Function<? super V,? extends R> function)
collectIf in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectIf in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>collectIf in interface org.eclipse.collections.api.ordered.OrderedIterable<V>collectIf in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>collectIf in interface org.eclipse.collections.api.RichIterable<V>public <R> org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,R> collectValues(org.eclipse.collections.api.block.function.Function2<? super K,? super V,? extends R> function)
collectValues in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>collectValues in interface org.eclipse.collections.api.map.MapIterable<K,V>collectValues in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>collectValues in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.tuple.Pair<K,V> detect(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
public <R> org.eclipse.collections.api.list.ImmutableList<R> flatCollect(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function)
flatCollect in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>flatCollect in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>flatCollect in interface org.eclipse.collections.api.ordered.OrderedIterable<V>flatCollect in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>flatCollect in interface org.eclipse.collections.api.RichIterable<V>public <S> org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.Pair<V,S>> zip(Iterable<S> that)
zip in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>zip in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>zip in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>zip in interface org.eclipse.collections.api.ordered.OrderedIterable<V>zip in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>zip in interface org.eclipse.collections.api.RichIterable<V>public org.eclipse.collections.api.list.ImmutableList<org.eclipse.collections.api.tuple.Pair<V,Integer>> zipWithIndex()
zipWithIndex in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>zipWithIndex in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>zipWithIndex in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>zipWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<V>zipWithIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>zipWithIndex in interface org.eclipse.collections.api.RichIterable<V>public <R> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<R,V> groupBy(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function)
groupBy in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>groupBy in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>groupBy in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>groupBy in interface org.eclipse.collections.api.ordered.OrderedIterable<V>groupBy in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>groupBy in interface org.eclipse.collections.api.RichIterable<V>public <R> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<R,V> groupByEach(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function)
groupByEach in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>groupByEach in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>groupByEach in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>groupByEach in interface org.eclipse.collections.api.ordered.OrderedIterable<V>groupByEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>groupByEach in interface org.eclipse.collections.api.RichIterable<V>public <V1> org.eclipse.collections.api.map.ImmutableMap<V1,V> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V,? extends V1> function)
public <K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V,? extends K2> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V2> zeroValueFactory, org.eclipse.collections.api.block.procedure.Procedure2<? super V2,? super V> mutatingAggregator)
aggregateInPlaceBy in interface org.eclipse.collections.api.map.ImmutableMapIterable<K,V>aggregateInPlaceBy in interface org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V>aggregateInPlaceBy in interface org.eclipse.collections.api.RichIterable<V>public <K2,V2> org.eclipse.collections.api.map.ImmutableMap<K2,V2> aggregateBy(org.eclipse.collections.api.block.function.Function<? super V,? extends K2> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V2> zeroValueFactory, org.eclipse.collections.api.block.function.Function2<? super V2,? super V,? extends V2> nonMutatingAggregator)
public void reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
reverseForEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public org.eclipse.collections.api.LazyIterable<V> asReversed()
asReversed in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
public org.eclipse.collections.api.map.sorted.ImmutableSortedMap<K,V> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
public org.eclipse.collections.api.partition.list.PartitionImmutableList<V> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
partitionWhile in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>partitionWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<V>partitionWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public org.eclipse.collections.api.list.ImmutableList<V> distinct()
public int indexOf(Object object)
indexOf in interface org.eclipse.collections.api.ordered.OrderedIterable<V>public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super S> predicate)
corresponds in interface org.eclipse.collections.api.ordered.OrderedIterable<V>public void forEach(int startIndex,
int endIndex,
org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
forEach in interface org.eclipse.collections.api.ordered.OrderedIterable<V>public void forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<V>public org.eclipse.collections.api.stack.MutableStack<V> toStack()
toStack in interface org.eclipse.collections.api.ordered.OrderedIterable<V>Copyright © 2004–2018. All rights reserved.