Uses of Class
org.eclipse.collections.impl.map.strategy.mutable.UnifiedMapWithHashingStrategy
-
Packages that use UnifiedMapWithHashingStrategy Package Description org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map. -
-
Uses of UnifiedMapWithHashingStrategy in org.eclipse.collections.impl.map.strategy.immutable
Fields in org.eclipse.collections.impl.map.strategy.immutable declared as UnifiedMapWithHashingStrategy Modifier and Type Field Description private UnifiedMapWithHashingStrategy<K,V>
ImmutableUnifiedMapWithHashingStrategy. delegate
Constructors in org.eclipse.collections.impl.map.strategy.immutable with parameters of type UnifiedMapWithHashingStrategy Constructor Description ImmutableUnifiedMapWithHashingStrategy(UnifiedMapWithHashingStrategy<K,V> delegate)
-
Uses of UnifiedMapWithHashingStrategy in org.eclipse.collections.impl.map.strategy.mutable
Fields in org.eclipse.collections.impl.map.strategy.mutable with type parameters of type UnifiedMapWithHashingStrategy Modifier and Type Field Description private java.lang.ref.WeakReference<UnifiedMapWithHashingStrategy<K,V>>
UnifiedMapWithHashingStrategy.EntrySet. holder
private java.lang.ref.WeakReference<UnifiedMapWithHashingStrategy<K,V>>
UnifiedMapWithHashingStrategy.EntrySetIterator. holder
protected java.lang.ref.WeakReference<UnifiedMapWithHashingStrategy<K,V>>
UnifiedMapWithHashingStrategy.WeakBoundEntry. holder
Methods in org.eclipse.collections.impl.map.strategy.mutable that return UnifiedMapWithHashingStrategy Modifier and Type Method Description UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy. clone()
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, int size)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, int size, float loadFactor)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, java.util.Map<? extends K,? extends V> map)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(UnifiedMapWithHashingStrategy<K,V> map)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMapWith(HashingStrategy<? super K> hashingStrategy, java.lang.Iterable<Pair<K,V>> inputIterable)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMapWith(HashingStrategy<? super K> hashingStrategy, Pair<K,V>... pairs)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newWithKeysValues(HashingStrategy<? super K> hashingStrategy, K key, V value)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newWithKeysValues(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newWithKeysValues(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newWithKeysValues(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy. withKeysValues(K key, V value)
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy. withKeysValues(K key1, V value1, K key2, V value2)
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy. withKeysValues(K key1, V value1, K key2, V value2, K key3, V value3)
UnifiedMapWithHashingStrategy<K,V>
UnifiedMapWithHashingStrategy. withKeysValues(K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type UnifiedMapWithHashingStrategy Modifier and Type Method Description protected void
UnifiedMapWithHashingStrategy. copyMap(UnifiedMapWithHashingStrategy<K,V> unifiedMap)
static <K,V>
UnifiedMapWithHashingStrategy<K,V>UnifiedMapWithHashingStrategy. newMap(UnifiedMapWithHashingStrategy<K,V> map)
Constructor parameters in org.eclipse.collections.impl.map.strategy.mutable with type arguments of type UnifiedMapWithHashingStrategy Constructor Description EntrySetIterator(java.lang.ref.WeakReference<UnifiedMapWithHashingStrategy<K,V>> holder)
WeakBoundEntry(K key, V value, java.lang.ref.WeakReference<UnifiedMapWithHashingStrategy<K,V>> holder, HashingStrategy<? super K> hashingStrategy)
-