Enum MutableBooleanStackFactoryImpl
java.lang.Object
java.lang.Enum<MutableBooleanStackFactoryImpl>
org.eclipse.collections.impl.stack.mutable.primitive.MutableBooleanStackFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableBooleanStackFactoryImpl>
,java.lang.constant.Constable
,MutableBooleanStackFactory
public enum MutableBooleanStackFactoryImpl extends Enum<MutableBooleanStackFactoryImpl> implements MutableBooleanStackFactory
MutableBooleanStackFactoryImpl is a factory implementation which creates instances of type
MutableBooleanStack
.
This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description MutableBooleanStack
empty()
MutableBooleanStack
of()
Same asMutableBooleanStackFactory.empty()
.MutableBooleanStack
of(boolean... items)
MutableBooleanStack
ofAll(Iterable<Boolean> iterable)
MutableBooleanStack
ofAll(BooleanIterable items)
MutableBooleanStack
ofAllReversed(BooleanIterable items)
static MutableBooleanStackFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableBooleanStackFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableBooleanStack
with()
Same asMutableBooleanStackFactory.empty()
.MutableBooleanStack
with(boolean... items)
MutableBooleanStack
withAll(Iterable<Boolean> iterable)
MutableBooleanStack
withAll(BooleanIterable items)
MutableBooleanStack
withAllReversed(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 interfaceMutableBooleanStackFactory
-
of
Description copied from interface:MutableBooleanStackFactory
Same asMutableBooleanStackFactory.empty()
.- Specified by:
of
in interfaceMutableBooleanStackFactory
-
with
Description copied from interface:MutableBooleanStackFactory
Same asMutableBooleanStackFactory.empty()
.- Specified by:
with
in interfaceMutableBooleanStackFactory
-
of
Description copied from interface:MutableBooleanStackFactory
- Specified by:
of
in interfaceMutableBooleanStackFactory
-
with
- Specified by:
with
in interfaceMutableBooleanStackFactory
-
ofAll
Description copied from interface:MutableBooleanStackFactory
- Specified by:
ofAll
in interfaceMutableBooleanStackFactory
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanStackFactory
-
ofAll
Description copied from interface:MutableBooleanStackFactory
- Specified by:
ofAll
in interfaceMutableBooleanStackFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanStackFactory
- Since:
- 10.0
-
ofAllReversed
Description copied from interface:MutableBooleanStackFactory
- Specified by:
ofAllReversed
in interfaceMutableBooleanStackFactory
-
withAllReversed
- Specified by:
withAllReversed
in interfaceMutableBooleanStackFactory
-