Uses of Class
org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy
Packages that use UnifiedSetWithHashingStrategy
Package
Description
This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
SetMultimap
interface which use a set with user-defined HashingStrategy
as their underlying store for the multiple values of a given key.This package contains implementations of immutable sets with user defined
HashingStrategy
s.This package contains implementations of sets with user defined
HashingStrategy
s.This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of UnifiedSetWithHashingStrategy in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type UnifiedSetWithHashingStrategyModifier and TypeMethodDescriptionprivate void
UnifiedMapWithHashingStrategy.KeySet.chainedAddToSet
(Object[] chain, UnifiedSetWithHashingStrategy<K> replace) -
Uses of UnifiedSetWithHashingStrategy in org.eclipse.collections.impl.multimap.set.strategy
Methods in org.eclipse.collections.impl.multimap.set.strategy that return UnifiedSetWithHashingStrategyModifier and TypeMethodDescriptionprotected UnifiedSetWithHashingStrategy
<V> UnifiedSetWithHashingStrategyMultimap.createCollection()
-
Uses of UnifiedSetWithHashingStrategy in org.eclipse.collections.impl.set.strategy.immutable
Fields in org.eclipse.collections.impl.set.strategy.immutable declared as UnifiedSetWithHashingStrategyModifier and TypeFieldDescriptionprivate final UnifiedSetWithHashingStrategy
<T> ImmutableUnifiedSetWithHashingStrategy.delegate
Constructors in org.eclipse.collections.impl.set.strategy.immutable with parameters of type UnifiedSetWithHashingStrategyModifierConstructorDescriptionprivate
-
Uses of UnifiedSetWithHashingStrategy in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable that return UnifiedSetWithHashingStrategyModifier and TypeMethodDescriptionUnifiedSetWithHashingStrategy.clone()
UnifiedSetWithHashingStrategy.newEmpty()
UnifiedSetWithHashingStrategy.newEmpty
(int size) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super K> hashingStrategy) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super K> hashingStrategy, int size) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super K> hashingStrategy, int size, float loadFactor) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(HashingStrategy<? super K> hashingStrategy, Iterable<? extends K> source) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(UnifiedSetWithHashingStrategy<K> set) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSetWith
(HashingStrategy<? super K> hashingStrategy, K... elements) UnifiedSetWithHashingStrategy.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) UnifiedSetWithHashingStrategy.selectInstancesOf
(Class<S> clazz) UnifiedSetWithHashingStrategy.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) UnifiedSetWithHashingStrategy.withoutAll
(Iterable<? extends T> elements) Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type UnifiedSetWithHashingStrategyModifier and TypeMethodDescriptionprivate void
UnifiedSetWithHashingStrategy.addIfFound
(T key, UnifiedSetWithHashingStrategy<T> other) private void
UnifiedSetWithHashingStrategy.addIfFoundFromChain
(UnifiedSetWithHashingStrategy.ChainedBucket bucket, T key, UnifiedSetWithHashingStrategy<T> other) protected boolean
UnifiedSetWithHashingStrategy.copySet
(UnifiedSetWithHashingStrategy<?> unifiedset) static <K> UnifiedSetWithHashingStrategy
<K> UnifiedSetWithHashingStrategy.newSet
(UnifiedSetWithHashingStrategy<K> set) Constructors in org.eclipse.collections.impl.set.strategy.mutable with parameters of type UnifiedSetWithHashingStrategyModifierConstructorDescriptionUnifiedSetWithHashingStrategy
(HashingStrategy<? super T> hashingStrategy, UnifiedSetWithHashingStrategy<T> set) -
Uses of UnifiedSetWithHashingStrategy in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type UnifiedSetWithHashingStrategyModifier and TypeMethodDescriptionstatic <T> MutableSet
<MutableSet<T>> SetIterables.powerSet
(UnifiedSetWithHashingStrategy<T> set)