public enum MutableBooleanListFactoryImpl extends Enum<MutableBooleanListFactoryImpl> implements MutableBooleanListFactory
MutableBooleanList.
This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
empty() |
MutableBooleanList |
of() |
MutableBooleanList |
of(boolean... items) |
MutableBooleanList |
ofAll(BooleanIterable items) |
MutableBooleanList |
ofAll(Iterable<Boolean> iterable) |
static MutableBooleanListFactoryImpl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableBooleanListFactoryImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
MutableBooleanList |
with() |
MutableBooleanList |
with(boolean... items)
Creates a new list using the passed
items argument as the backing store. |
MutableBooleanList |
withAll(BooleanIterable items) |
MutableBooleanList |
withAll(Iterable<Boolean> iterable) |
MutableBooleanList |
withInitialCapacity(int capacity) |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfwrapCopypublic static final MutableBooleanListFactoryImpl INSTANCE
public static MutableBooleanListFactoryImpl[] values()
for (MutableBooleanListFactoryImpl c : MutableBooleanListFactoryImpl.values()) System.out.println(c);
public static MutableBooleanListFactoryImpl 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 MutableBooleanList empty()
empty in interface MutableBooleanListFactorypublic MutableBooleanList of()
of in interface MutableBooleanListFactorypublic MutableBooleanList with()
with in interface MutableBooleanListFactorypublic MutableBooleanList withInitialCapacity(int capacity)
withInitialCapacity in interface MutableBooleanListFactorypublic MutableBooleanList of(boolean... items)
of in interface MutableBooleanListFactorypublic MutableBooleanList with(boolean... 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 MutableBooleanListFactorypublic MutableBooleanList ofAll(BooleanIterable items)
ofAll in interface MutableBooleanListFactorypublic MutableBooleanList withAll(BooleanIterable items)
withAll in interface MutableBooleanListFactorypublic MutableBooleanList ofAll(Iterable<Boolean> iterable)
ofAll in interface MutableBooleanListFactorypublic MutableBooleanList withAll(Iterable<Boolean> iterable)
withAll in interface MutableBooleanListFactoryCopyright © 2004–2021. All rights reserved.