public enum MutableFloatListFactoryImpl extends Enum<MutableFloatListFactoryImpl> implements MutableFloatListFactory
MutableFloatList.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatList |
empty() |
MutableFloatList |
of() |
MutableFloatList |
of(float... items) |
MutableFloatList |
ofAll(FloatIterable items) |
MutableFloatList |
ofAll(Iterable<Float> iterable) |
static MutableFloatListFactoryImpl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableFloatListFactoryImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
MutableFloatList |
with() |
MutableFloatList |
with(float... items)
Creates a new list using the passed
items argument as the backing store. |
MutableFloatList |
withAll(FloatIterable items) |
MutableFloatList |
withAll(Iterable<Float> iterable) |
MutableFloatList |
withInitialCapacity(int capacity) |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfwrapCopypublic static final MutableFloatListFactoryImpl INSTANCE
public static MutableFloatListFactoryImpl[] values()
for (MutableFloatListFactoryImpl c : MutableFloatListFactoryImpl.values()) System.out.println(c);
public static MutableFloatListFactoryImpl valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic MutableFloatList empty()
empty in interface MutableFloatListFactorypublic MutableFloatList of()
of in interface MutableFloatListFactorypublic MutableFloatList with()
with in interface MutableFloatListFactorypublic MutableFloatList withInitialCapacity(int capacity)
withInitialCapacity in interface MutableFloatListFactorypublic MutableFloatList of(float... items)
of in interface MutableFloatListFactorypublic MutableFloatList with(float... items)
items 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. !!!
with in interface MutableFloatListFactorypublic MutableFloatList ofAll(FloatIterable items)
ofAll in interface MutableFloatListFactorypublic MutableFloatList withAll(FloatIterable items)
withAll in interface MutableFloatListFactorypublic MutableFloatList ofAll(Iterable<Float> iterable)
ofAll in interface MutableFloatListFactorypublic MutableFloatList withAll(Iterable<Float> iterable)
withAll in interface MutableFloatListFactoryCopyright © 2004–2020. All rights reserved.