Interface MutableHashingStrategySetFactory
public interface MutableHashingStrategySetFactory
-
Method Summary
Modifier and TypeMethodDescriptiondefault <T,V> MutableSet<T> fromFunction(Function<? super T, ? extends V> function) Since 11.1<T> MutableSet<T>of(HashingStrategy<? super T> hashingStrategy) Same aswith(HashingStrategy).<T> MutableSet<T>of(HashingStrategy<? super T> hashingStrategy, T... items) Same aswith(HashingStrategy, Object[]).<T> MutableSet<T>ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) Same aswithAll(HashingStrategy, Iterable).<T> MutableSet<T>ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) Same aswithInitialCapacity(HashingStrategy, int). of initial capacity.<T> MutableSet<T>with(HashingStrategy<? super T> hashingStrategy) <T> MutableSet<T>with(HashingStrategy<? super T> hashingStrategy, T... items) <T> MutableSet<T>withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items) <T> MutableSet<T>withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
-
Method Details
-
of
Same aswith(HashingStrategy). -
with
-
fromFunction
Since 11.1 -
of
Same aswith(HashingStrategy, Object[]). -
with
-
ofAll
Same aswithAll(HashingStrategy, Iterable). -
withAll
-
ofInitialCapacity
Same aswithInitialCapacity(HashingStrategy, int). of initial capacity. -
withInitialCapacity
-