Uses of Class
org.eclipse.collections.impl.map.mutable.UnifiedMap
-
Packages that use UnifiedMap Package Description org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface. -
-
Uses of UnifiedMap in org.eclipse.collections.impl.bimap.mutable
Fields in org.eclipse.collections.impl.bimap.mutable declared as UnifiedMap Modifier and Type Field Description private UnifiedMap<K,V>
AbstractMutableBiMap. delegate
Methods in org.eclipse.collections.impl.bimap.mutable that return UnifiedMap Modifier and Type Method Description protected UnifiedMap<K,V>
AbstractMutableBiMap. getDelegate()
protected UnifiedMap<V,K>
AbstractMutableBiMap. getInverse()
-
Uses of UnifiedMap in org.eclipse.collections.impl.map.immutable
Fields in org.eclipse.collections.impl.map.immutable declared as UnifiedMap Modifier and Type Field Description private UnifiedMap<K,V>
ImmutableUnifiedMap. delegate
-
Uses of UnifiedMap in org.eclipse.collections.impl.map.mutable
Fields in org.eclipse.collections.impl.map.mutable with type parameters of type UnifiedMap Modifier and Type Field Description private java.lang.ref.WeakReference<UnifiedMap<K,V>>
UnifiedMap.EntrySet. holder
private java.lang.ref.WeakReference<UnifiedMap<K,V>>
UnifiedMap.EntrySetIterator. holder
protected java.lang.ref.WeakReference<UnifiedMap<K,V>>
UnifiedMap.WeakBoundEntry. holder
Methods in org.eclipse.collections.impl.map.mutable that return UnifiedMap Modifier and Type Method Description UnifiedMap<K,V>
UnifiedMap. clone()
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMap()
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMap(int size)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMap(int size, float loadFactor)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMap(java.util.Map<? extends K,? extends V> map)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMapWith(java.lang.Iterable<Pair<K,V>> inputIterable)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newMapWith(Pair<K,V>... pairs)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newWithKeysValues(K key, V value)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newWithKeysValues(K key1, V value1, K key2, V value2)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newWithKeysValues(K key1, V value1, K key2, V value2, K key3, V value3)
static <K,V>
UnifiedMap<K,V>UnifiedMap. newWithKeysValues(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
UnifiedMap<K,V>
UnifiedMap. withKeysValues(K key, V value)
UnifiedMap<K,V>
UnifiedMap. withKeysValues(K key1, V value1, K key2, V value2)
UnifiedMap<K,V>
UnifiedMap. withKeysValues(K key1, V value1, K key2, V value2, K key3, V value3)
UnifiedMap<K,V>
UnifiedMap. withKeysValues(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
Methods in org.eclipse.collections.impl.map.mutable with parameters of type UnifiedMap Modifier and Type Method Description protected void
UnifiedMap. copyMap(UnifiedMap<K,V> unifiedMap)
Constructor parameters in org.eclipse.collections.impl.map.mutable with type arguments of type UnifiedMap Constructor Description EntrySetIterator(java.lang.ref.WeakReference<UnifiedMap<K,V>> holder)
WeakBoundEntry(K key, V value, java.lang.ref.WeakReference<UnifiedMap<K,V>> holder)
-