Enum MutableBooleanSetFactoryImpl
java.lang.Object
java.lang.Enum<MutableBooleanSetFactoryImpl>
org.eclipse.collections.impl.set.mutable.primitive.MutableBooleanSetFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableBooleanSetFactoryImpl>
,java.lang.constant.Constable
,MutableBooleanSetFactory
public enum MutableBooleanSetFactoryImpl extends Enum<MutableBooleanSetFactoryImpl> implements MutableBooleanSetFactory
MutableBooleanSetFactoryImpl is a factory implementation which creates instances of type
MutableBooleanSet
.
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 MutableBooleanSet
empty()
MutableBooleanSet
of()
Same asMutableBooleanSetFactory.empty()
.MutableBooleanSet
of(boolean... items)
MutableBooleanSet
ofAll(Iterable<Boolean> iterable)
MutableBooleanSet
ofAll(BooleanIterable items)
static MutableBooleanSetFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableBooleanSetFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableBooleanSet
with()
Same asMutableBooleanSetFactory.empty()
.MutableBooleanSet
with(boolean... items)
MutableBooleanSet
withAll(Iterable<Boolean> iterable)
MutableBooleanSet
withAll(BooleanIterable items)
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:
empty
in interfaceMutableBooleanSetFactory
-
of
Description copied from interface:MutableBooleanSetFactory
Same asMutableBooleanSetFactory.empty()
.- Specified by:
of
in interfaceMutableBooleanSetFactory
-
with
Description copied from interface:MutableBooleanSetFactory
Same asMutableBooleanSetFactory.empty()
.- Specified by:
with
in interfaceMutableBooleanSetFactory
-
of
Description copied from interface:MutableBooleanSetFactory
- Specified by:
of
in interfaceMutableBooleanSetFactory
-
with
- Specified by:
with
in interfaceMutableBooleanSetFactory
-
ofAll
Description copied from interface:MutableBooleanSetFactory
- Specified by:
ofAll
in interfaceMutableBooleanSetFactory
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanSetFactory
-
ofAll
Description copied from interface:MutableBooleanSetFactory
- Specified by:
ofAll
in interfaceMutableBooleanSetFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanSetFactory
- Since:
- 10.0
-