Package | Description |
---|---|
org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap . |
org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
org.eclipse.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method | Description |
---|---|---|
MutableSortedSetMultimap<V,K> |
MutableSortedMap.flip() |
Modifier and Type | Method | Description |
---|---|---|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.asSynchronized() |
|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.newEmpty() |
|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
MutableSortedSetMultimap<K,V> |
MutableSortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
|
MutableSortedSetMultimap<K,V> |
SortedSetMultimap.toMutable() |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSortedSetMultimap<V,T> |
MutableSortedSet.groupBy(Function<? super T,? extends V> function) |
|
<V> MutableSortedSetMultimap<V,T> |
MutableSortedSet.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of(java.util.Comparator<V> comparator) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of(java.util.Comparator<V> comparator,
K key,
V value) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of(java.util.Comparator<V> comparator,
K key1,
V value1,
K key2,
V value2) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.of(java.util.Comparator<V> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with(java.util.Comparator<V> comparator) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with(java.util.Comparator<V> comparator,
K key,
V value) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with(java.util.Comparator<V> comparator,
K key1,
V value1,
K key2,
V value2) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.with(java.util.Comparator<V> comparator,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
|
<K,V> MutableSortedSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSortedSetMultimapFactory.withAll(Multimap<? extends K,? extends V> multimap) |
Modifier and Type | Method | Description |
---|---|---|
MutableSortedSetMultimap<V,K> |
AbstractMutableSortedMap.flip() |
|
MutableSortedSetMultimap<V,K> |
SynchronizedSortedMap.flip() |
|
MutableSortedSetMultimap<V,K> |
UnmodifiableTreeMap.flip() |
Modifier and Type | Class | Description |
---|---|---|
class |
SynchronizedPutTreeSortedSetMultimap<K,V> |
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
class |
SynchronizedSortedSetMultimap<K,V> |
|
class |
TreeSortedSetMultimap<K,V> |
Modifier and Type | Method | Description |
---|---|---|
MutableSortedSetMultimap<K,V> |
SynchronizedPutTreeSortedSetMultimap.asSynchronized() |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.asSynchronized() |
|
MutableSortedSetMultimap<K,V> |
TreeSortedSetMultimap.asSynchronized() |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.newEmpty() |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
|
MutableSortedSetMultimap<K,V> |
ImmutableSortedSetMultimapImpl.toMutable() |
|
MutableSortedSetMultimap<K,V> |
SynchronizedPutTreeSortedSetMultimap.toMutable() |
|
MutableSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.toMutable() |
|
MutableSortedSetMultimap<K,V> |
TreeSortedSetMultimap.toMutable() |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> SynchronizedSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.of(MutableSortedSetMultimap<K,V> multimap) |
This method will take a Multimap and wrap it directly in a SynchronizedSortedSetMultimap.
|
static <K,V> SynchronizedSortedSetMultimap<K,V> |
SynchronizedSortedSetMultimap.of(MutableSortedSetMultimap<K,V> multimap,
java.lang.Object lock) |
This method will take a Multimap and wrap it directly in a SynchronizedSortedSetMultimap.
|
Constructor | Description |
---|---|
SynchronizedSortedSetMultimap(MutableSortedSetMultimap<K,V> multimap) |
|
SynchronizedSortedSetMultimap(MutableSortedSetMultimap<K,V> multimap,
java.lang.Object newLock) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSortedSetMultimap<V,T> |
SynchronizedSortedSet.groupBy(Function<? super T,? extends V> function) |
|
<V> MutableSortedSetMultimap<V,T> |
UnmodifiableSortedSet.groupBy(Function<? super T,? extends V> function) |
|
<V> MutableSortedSetMultimap<V,T> |
SynchronizedSortedSet.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
<V> MutableSortedSetMultimap<V,T> |
UnmodifiableSortedSet.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
static <K,V> MutableSortedSetMultimap<V,K> |
MapIterate.flip(SortedMapIterable<K,V> iMap) |
Copyright © 2004–2017. All rights reserved.