Enum MutableLongListFactoryImpl
java.lang.Object
java.lang.Enum<MutableLongListFactoryImpl>
org.eclipse.collections.impl.list.mutable.primitive.MutableLongListFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableLongListFactoryImpl>
,java.lang.constant.Constable
,MutableLongListFactory
public enum MutableLongListFactoryImpl extends Enum<MutableLongListFactoryImpl> implements MutableLongListFactory
MutableLongListFactoryImpl is a factory implementation which creates instances of type
MutableLongList
.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description MutableLongList
empty()
MutableLongList
of()
Same asMutableLongListFactory.empty()
.MutableLongList
of(long... items)
Same asMutableLongListFactory.with(long[])
.MutableLongList
ofAll(Iterable<Long> iterable)
MutableLongList
ofAll(LongStream items)
MutableLongList
ofAll(LongIterable items)
static MutableLongListFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableLongListFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableLongList
with()
Same asMutableLongListFactory.empty()
.MutableLongList
with(long... items)
Creates a new list using the passeditems
argument as the backing store.MutableLongList
withAll(Iterable<Long> iterable)
MutableLongList
withAll(LongStream items)
MutableLongList
withAll(LongIterable items)
MutableLongList
withInitialCapacity(int capacity)
Same asMutableLongListFactory.empty()
.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.eclipse.collections.api.factory.list.primitive.MutableLongListFactory
wrapCopy
-
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:
empty
in interfaceMutableLongListFactory
-
of
Description copied from interface:MutableLongListFactory
Same asMutableLongListFactory.empty()
.- Specified by:
of
in interfaceMutableLongListFactory
-
with
Description copied from interface:MutableLongListFactory
Same asMutableLongListFactory.empty()
.- Specified by:
with
in interfaceMutableLongListFactory
-
withInitialCapacity
Description copied from interface:MutableLongListFactory
Same asMutableLongListFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableLongListFactory
-
of
Description copied from interface:MutableLongListFactory
Same asMutableLongListFactory.with(long[])
.- Specified by:
of
in interfaceMutableLongListFactory
-
with
Creates a new list using the passeditems
argument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
- Specified by:
with
in interfaceMutableLongListFactory
-
ofAll
Description copied from interface:MutableLongListFactory
- Specified by:
ofAll
in interfaceMutableLongListFactory
-
withAll
- Specified by:
withAll
in interfaceMutableLongListFactory
-
ofAll
Description copied from interface:MutableLongListFactory
- Specified by:
ofAll
in interfaceMutableLongListFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableLongListFactory
- Since:
- 10.0
-
ofAll
- Specified by:
ofAll
in interfaceMutableLongListFactory
- Since:
- 9.0
-
withAll
- Specified by:
withAll
in interfaceMutableLongListFactory
- Since:
- 9.0
-