Enum MutableLongSetFactoryImpl
java.lang.Object
java.lang.Enum<MutableLongSetFactoryImpl>
org.eclipse.collections.impl.set.mutable.primitive.MutableLongSetFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableLongSetFactoryImpl>,java.lang.constant.Constable,MutableLongSetFactory
public enum MutableLongSetFactoryImpl extends Enum<MutableLongSetFactoryImpl> implements MutableLongSetFactory
MutableLongSetFactoryImpl is a factory implementation which creates instances of type
MutableLongSet.
This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE -
Method Summary
Modifier and Type Method Description MutableLongSetempty()MutableLongSetof()Same asMutableLongSetFactory.empty().MutableLongSetof(long... items)Same asMutableLongSetFactory.with(long[]).MutableLongSetofAll(Iterable<Long> iterable)MutableLongSetofAll(LongStream items)MutableLongSetofAll(LongIterable items)static MutableLongSetFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableLongSetFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableLongSetwith()Same asMutableLongSetFactory.empty().MutableLongSetwith(long... items)MutableLongSetwithAll(Iterable<Long> iterable)MutableLongSetwithAll(LongStream items)MutableLongSetwithAll(LongIterable items)MutableLongSetwithInitialCapacity(int capacity)Same asMutableLongSetFactory.empty().Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
empty
- Specified by:
emptyin interfaceMutableLongSetFactory
-
of
Description copied from interface:MutableLongSetFactorySame asMutableLongSetFactory.empty().- Specified by:
ofin interfaceMutableLongSetFactory
-
with
Description copied from interface:MutableLongSetFactorySame asMutableLongSetFactory.empty().- Specified by:
within interfaceMutableLongSetFactory
-
withInitialCapacity
Description copied from interface:MutableLongSetFactorySame asMutableLongSetFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableLongSetFactory
-
of
Description copied from interface:MutableLongSetFactorySame asMutableLongSetFactory.with(long[]).- Specified by:
ofin interfaceMutableLongSetFactory
-
with
- Specified by:
within interfaceMutableLongSetFactory
-
ofAll
Description copied from interface:MutableLongSetFactory- Specified by:
ofAllin interfaceMutableLongSetFactory
-
withAll
- Specified by:
withAllin interfaceMutableLongSetFactory
-
ofAll
Description copied from interface:MutableLongSetFactory- Specified by:
ofAllin interfaceMutableLongSetFactory- Since:
- 10.0
-
withAll
- Specified by:
withAllin interfaceMutableLongSetFactory- Since:
- 10.0
-
ofAll
- Specified by:
ofAllin interfaceMutableLongSetFactory- Since:
- 9.0
-
withAll
- Specified by:
withAllin interfaceMutableLongSetFactory- Since:
- 9.0
-