Interface MutableHashingStrategySetFactory
- All Known Implementing Classes:
MutableHashingStrategySetFactoryImpl
public interface MutableHashingStrategySetFactory
-
Method Summary
Modifier and Type Method Description <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)<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
-
of
Same aswith(HashingStrategy, Object[]). -
with
-
ofAll
Same aswithAll(HashingStrategy, Iterable). -
withAll
-
ofInitialCapacity
Same aswithInitialCapacity(HashingStrategy, int). of initial capacity. -
withInitialCapacity
-