public interface MutableHashingStrategySetFactory
| Modifier and Type | Method and Description |
|---|---|
default <T,V> MutableSet<T> |
fromFunction(Function<? super T,? extends V> function)
Since 11.1
|
<T> MutableSet<T> |
of(HashingStrategy<? super T> hashingStrategy)
Same as
with(HashingStrategy). |
<T> MutableSet<T> |
of(HashingStrategy<? super T> hashingStrategy,
T... items)
Same as
with(HashingStrategy, Object[]). |
<T> MutableSet<T> |
ofAll(HashingStrategy<? super T> hashingStrategy,
Iterable<? extends T> items)
Same as
withAll(HashingStrategy, Iterable). |
<T> MutableSet<T> |
ofInitialCapacity(HashingStrategy<? super T> hashingStrategy,
int 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) |
<T> MutableSet<T> of(HashingStrategy<? super T> hashingStrategy)
with(HashingStrategy).<T> MutableSet<T> with(HashingStrategy<? super T> hashingStrategy)
default <T,V> MutableSet<T> fromFunction(Function<? super T,? extends V> function)
<T> MutableSet<T> of(HashingStrategy<? super T> hashingStrategy, T... items)
with(HashingStrategy, Object[]).<T> MutableSet<T> with(HashingStrategy<? super T> hashingStrategy, T... items)
<T> MutableSet<T> ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
withAll(HashingStrategy, Iterable).<T> MutableSet<T> withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
<T> MutableSet<T> ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
withInitialCapacity(HashingStrategy, int). of initial capacity.<T> MutableSet<T> withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
Copyright © 2004–2022. All rights reserved.