public class SynchronizedSortedMap<K,V> extends AbstractSynchronizedMapIterable<K,V> implements org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>, Serializable
| Constructor and Description |
|---|
SynchronizedSortedMap(org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> newMap) |
SynchronizedSortedMap(org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> newMap,
Object lock) |
| Modifier and Type | Method and Description |
|---|---|
<K2,V2> org.eclipse.collections.api.map.MutableMap<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.MutableMap<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() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
asSynchronized() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
asUnmodifiable() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
clone() |
<R> org.eclipse.collections.api.list.MutableList<R> |
collect(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function) |
<K2,V2> org.eclipse.collections.api.map.MutableMap<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.MutableBooleanList |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction) |
org.eclipse.collections.api.list.primitive.MutableByteList |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction) |
org.eclipse.collections.api.list.primitive.MutableCharList |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V> charFunction) |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction) |
org.eclipse.collections.api.list.primitive.MutableFloatList |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction) |
<R> org.eclipse.collections.api.list.MutableList<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.MutableIntList |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V> intFunction) |
<E> org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
collectKeysAndValues(Iterable<E> iterable,
org.eclipse.collections.api.block.function.Function<? super E,? extends K> keyFunction,
org.eclipse.collections.api.block.function.Function<? super E,? extends V> function) |
org.eclipse.collections.api.list.primitive.MutableLongList |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V> longFunction) |
org.eclipse.collections.api.list.primitive.MutableShortList |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction) |
<R> org.eclipse.collections.api.map.sorted.MutableSortedMap<K,R> |
collectValues(org.eclipse.collections.api.block.function.Function2<? super K,? super V,? extends R> function) |
<P,VV> org.eclipse.collections.api.list.MutableList<VV> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super V,? super P,? extends VV> function,
P parameter) |
Comparator<? super K> |
comparator() |
<S> boolean |
corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super S> 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.MutableList<V> |
distinct() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
drop(int count) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.set.MutableSet<Map.Entry<K,V>> |
entrySet() |
K |
firstKey() |
<R> org.eclipse.collections.api.list.MutableList<R> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function) |
org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,K> |
flip() |
org.eclipse.collections.api.map.MutableMapIterable<V,K> |
flipUniqueValues() |
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) |
<KK> org.eclipse.collections.api.multimap.list.MutableListMultimap<KK,V> |
groupBy(org.eclipse.collections.api.block.function.Function<? super V,? extends KK> function) |
<KK> org.eclipse.collections.api.multimap.list.MutableListMultimap<KK,V> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<KK>> function) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
headMap(K toKey) |
int |
indexOf(Object object) |
org.eclipse.collections.api.set.MutableSet<K> |
keySet() |
org.eclipse.collections.api.RichIterable<K> |
keysView() |
K |
lastKey() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
newEmpty() |
static <K,V,M extends SortedMap<K,V>> |
of(M map)
This method will take a MutableSortedMap and wrap it directly in a SynchronizedSortedMap.
|
static <K,V,M extends SortedMap<K,V>> |
of(M map,
Object lock) |
org.eclipse.collections.api.partition.list.PartitionMutableList<V> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.partition.list.PartitionMutableList<V> |
partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
<P> org.eclipse.collections.api.partition.list.PartitionMutableList<V> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
org.eclipse.collections.api.list.MutableList<V> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
<P> org.eclipse.collections.api.list.MutableList<V> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
void |
reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure) |
org.eclipse.collections.api.list.MutableList<V> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
select(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate) |
<S> org.eclipse.collections.api.list.MutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.list.MutableList<V> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate,
P parameter) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
subMap(K fromKey,
K toKey) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
tailMap(K fromKey) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
take(int count) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableSortedMap<K,V> |
toReversed() |
org.eclipse.collections.api.stack.MutableStack<V> |
toStack() |
org.eclipse.collections.api.collection.MutableCollection<V> |
values() |
org.eclipse.collections.api.RichIterable<V> |
valuesView() |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
with(org.eclipse.collections.api.tuple.Pair<K,V>... pairs)
Deprecated.
in 6.0 Use
withAllKeyValueArguments(Pair[]) instead. Inlineable. |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
withAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>... keyValuePairs) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
withAllKeyValues(Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>> keyValues) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
withKeyValue(K key,
V value) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
withoutAllKeys(Iterable<? extends K> keys) |
org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> |
withoutKey(K key) |
<S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<V,S>> |
zip(Iterable<S> that) |
org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<V,Integer>> |
zipWithIndex() |
add, clear, containsKey, containsValue, detect, forEachKey, forEachKeyValue, forEachValue, get, getIfAbsent, getIfAbsentPut, getIfAbsentPut, getIfAbsentPutWith, getIfAbsentPutWithKey, getIfAbsentValue, getIfAbsentWith, ifPresentApply, keyValuesView, put, putAll, remove, removeKey, updateValue, updateValueWithallSatisfy, 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, equals, flatCollect, forEach, forEachWith, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, groupByUniqueKey, hashCode, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, iterator, max, max, maxBy, min, 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, toSortedSetBy, toString, zip, zipWithIndexgetIfAbsentPutWith, groupByUniqueKeyadd, getIfAbsentPut, getIfAbsentPut, getIfAbsentPutWithKey, removeKey, updateValue, updateValueWithcontainsKey, containsValue, detect, equals, forEachKey, forEachKeyValue, forEachValue, get, getIfAbsent, getIfAbsentValue, getIfAbsentWith, hashCode, ifPresentApply, keyValuesView, toStringforEachWithIndex, 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, 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, iterator, spliteratorclear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, sizepublic SynchronizedSortedMap(org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> newMap)
public static <K,V,M extends SortedMap<K,V>> SynchronizedSortedMap<K,V> of(M map)
public static <K,V,M extends SortedMap<K,V>> SynchronizedSortedMap<K,V> of(M map, Object lock)
public Comparator<? super K> comparator()
public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> withKeyValue(K key, V value)
@Deprecated public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> with(org.eclipse.collections.api.tuple.Pair<K,V>... pairs)
withAllKeyValueArguments(Pair[]) instead. Inlineable.public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> withAllKeyValueArguments(org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>... keyValuePairs)
public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> withAllKeyValues(Iterable<? extends org.eclipse.collections.api.tuple.Pair<? extends K,? extends V>> keyValues)
public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> withoutAllKeys(Iterable<? extends K> keys)
public <E> org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> collectKeysAndValues(Iterable<E> iterable, org.eclipse.collections.api.block.function.Function<? super E,? extends K> keyFunction, org.eclipse.collections.api.block.function.Function<? super E,? extends V> function)
public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V> procedure)
tap in interface org.eclipse.collections.api.map.MapIterable<K,V>tap in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>tap in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableList<V> select(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
select in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>select in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableList<V> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>selectWith in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.list.MutableList<V> reject(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
reject in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>reject in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableList<V> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>rejectWith in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.partition.list.PartitionMutableList<V> partition(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
partition in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>partition in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<V,Integer>> zipWithIndex()
zipWithIndex in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>zipWithIndex in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 <P> org.eclipse.collections.api.partition.list.PartitionMutableList<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.MutableSortedMap<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.MutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>selectInstancesOf in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableList<R> collect(org.eclipse.collections.api.block.function.Function<? super V,? extends R> function)
collect in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V> byteFunction)
collectByte in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V> charFunction)
collectChar in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V> doubleFunction)
collectDouble in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V> floatFunction)
collectFloat in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V> intFunction)
collectInt in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V> longFunction)
collectLong in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V> shortFunction)
collectShort in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 <P,VV> org.eclipse.collections.api.list.MutableList<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.MutableSortedMap<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.MutableList<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.MutableSortedMap<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.list.MutableList<R> flatCollect(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<R>> function)
flatCollect in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 String makeString()
makeString in interface org.eclipse.collections.api.RichIterable<V>makeString in class AbstractSynchronizedRichIterable<V>public String makeString(String separator)
makeString in interface org.eclipse.collections.api.RichIterable<V>makeString in class AbstractSynchronizedRichIterable<V>public String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.RichIterable<V>makeString in class AbstractSynchronizedRichIterable<V>public <KK> org.eclipse.collections.api.multimap.list.MutableListMultimap<KK,V> groupBy(org.eclipse.collections.api.block.function.Function<? super V,? extends KK> function)
groupBy in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>groupBy in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 <KK> org.eclipse.collections.api.multimap.list.MutableListMultimap<KK,V> groupByEach(org.eclipse.collections.api.block.function.Function<? super V,? extends Iterable<KK>> function)
groupByEach in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>groupByEach in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 <S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<V,S>> zip(Iterable<S> that)
zip in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>zip in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<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 <K2,V2> org.eclipse.collections.api.map.MutableMap<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)
public <K2,V2> org.eclipse.collections.api.map.MutableMap<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 org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap<V,K> flip()
flip in interface org.eclipse.collections.api.map.MapIterable<K,V>flip in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>flip in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>flip in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> select(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
select in interface org.eclipse.collections.api.map.MapIterable<K,V>select in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>select in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>select in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> reject(org.eclipse.collections.api.block.predicate.Predicate2<? super K,? super V> predicate)
reject in interface org.eclipse.collections.api.map.MapIterable<K,V>reject in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>reject in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>reject in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public <K2,V2> org.eclipse.collections.api.map.MutableMap<K2,V2> collect(org.eclipse.collections.api.block.function.Function2<? super K,? super V,org.eclipse.collections.api.tuple.Pair<K2,V2>> function)
public <R> org.eclipse.collections.api.map.sorted.MutableSortedMap<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.MapIterable<K,V>collectValues in interface org.eclipse.collections.api.map.MutableMapIterable<K,V>collectValues in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>collectValues in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>public org.eclipse.collections.api.RichIterable<K> keysView()
public org.eclipse.collections.api.RichIterable<V> valuesView()
public org.eclipse.collections.api.set.MutableSet<K> keySet()
public org.eclipse.collections.api.collection.MutableCollection<V> values()
public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> subMap(K fromKey, K toKey)
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 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>public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
detectIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<V>public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
takeWhile in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>takeWhile in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>takeWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<V>takeWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
dropWhile in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>dropWhile in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>dropWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<V>dropWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>public org.eclipse.collections.api.partition.list.PartitionMutableList<V> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super V> predicate)
partitionWhile in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>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.MutableList<V> distinct()
distinct in interface org.eclipse.collections.api.map.sorted.MutableSortedMap<K,V>distinct in interface org.eclipse.collections.api.map.sorted.SortedMapIterable<K,V>distinct in interface org.eclipse.collections.api.ordered.OrderedIterable<V>distinct in interface org.eclipse.collections.api.ordered.ReversibleIterable<V>Copyright © 2004–2018. All rights reserved.