Enum MutableHashingStrategySetFactoryImpl
- java.lang.Object
-
- java.lang.Enum<MutableHashingStrategySetFactoryImpl>
-
- org.eclipse.collections.impl.set.strategy.mutable.MutableHashingStrategySetFactoryImpl
-
- All Implemented Interfaces:
Serializable,Comparable<MutableHashingStrategySetFactoryImpl>,MutableHashingStrategySetFactory
public enum MutableHashingStrategySetFactoryImpl extends Enum<MutableHashingStrategySetFactoryImpl> implements MutableHashingStrategySetFactory
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,V>
MutableSet<T>fromFunction(Function<? super T,? extends V> function)<T> MutableSet<T>of(HashingStrategy<? super T> hashingStrategy)<T> MutableSet<T>of(HashingStrategy<? super T> hashingStrategy, T... items)<T> MutableSet<T>ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)<T> MutableSet<T>ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)static MutableHashingStrategySetFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableHashingStrategySetFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.<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)
-
-
-
Enum Constant Detail
-
INSTANCE
public static final MutableHashingStrategySetFactoryImpl INSTANCE
-
-
Method Detail
-
values
public static MutableHashingStrategySetFactoryImpl[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MutableHashingStrategySetFactoryImpl c : MutableHashingStrategySetFactoryImpl.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MutableHashingStrategySetFactoryImpl valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
of
public <T> MutableSet<T> of(HashingStrategy<? super T> hashingStrategy)
- Specified by:
ofin interfaceMutableHashingStrategySetFactory
-
with
public <T> MutableSet<T> with(HashingStrategy<? super T> hashingStrategy)
- Specified by:
within interfaceMutableHashingStrategySetFactory
-
fromFunction
public <T,V> MutableSet<T> fromFunction(Function<? super T,? extends V> function)
- Specified by:
fromFunctionin interfaceMutableHashingStrategySetFactory
-
of
public <T> MutableSet<T> of(HashingStrategy<? super T> hashingStrategy, T... items)
- Specified by:
ofin interfaceMutableHashingStrategySetFactory
-
with
public <T> MutableSet<T> with(HashingStrategy<? super T> hashingStrategy, T... items)
- Specified by:
within interfaceMutableHashingStrategySetFactory
-
ofAll
public <T> MutableSet<T> ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
- Specified by:
ofAllin interfaceMutableHashingStrategySetFactory
-
withAll
public <T> MutableSet<T> withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
- Specified by:
withAllin interfaceMutableHashingStrategySetFactory
-
ofInitialCapacity
public <T> MutableSet<T> ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableHashingStrategySetFactory
-
withInitialCapacity
public <T> MutableSet<T> withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
- Specified by:
withInitialCapacityin interfaceMutableHashingStrategySetFactory
-
-