Enum MutableIntStackFactoryImpl
java.lang.Object
java.lang.Enum<MutableIntStackFactoryImpl>
org.eclipse.collections.impl.stack.mutable.primitive.MutableIntStackFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableIntStackFactoryImpl>
,java.lang.constant.Constable
,MutableIntStackFactory
public enum MutableIntStackFactoryImpl extends Enum<MutableIntStackFactoryImpl> implements MutableIntStackFactory
MutableIntStackFactoryImpl is a factory implementation which creates instances of type
MutableIntStack
.
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 MutableIntStack
empty()
MutableIntStack
of()
Same asMutableIntStackFactory.empty()
.MutableIntStack
of(int... items)
Same asMutableIntStackFactory.with(int[])
.MutableIntStack
ofAll(Iterable<Integer> iterable)
MutableIntStack
ofAll(IntStream items)
MutableIntStack
ofAll(IntIterable items)
MutableIntStack
ofAllReversed(IntIterable items)
static MutableIntStackFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableIntStackFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableIntStack
with()
Same asMutableIntStackFactory.empty()
.MutableIntStack
with(int... items)
MutableIntStack
withAll(Iterable<Integer> iterable)
MutableIntStack
withAll(IntStream items)
MutableIntStack
withAll(IntIterable items)
MutableIntStack
withAllReversed(IntIterable 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 interfaceMutableIntStackFactory
-
of
Description copied from interface:MutableIntStackFactory
Same asMutableIntStackFactory.empty()
.- Specified by:
of
in interfaceMutableIntStackFactory
-
with
Description copied from interface:MutableIntStackFactory
Same asMutableIntStackFactory.empty()
.- Specified by:
with
in interfaceMutableIntStackFactory
-
of
Description copied from interface:MutableIntStackFactory
Same asMutableIntStackFactory.with(int[])
.- Specified by:
of
in interfaceMutableIntStackFactory
-
with
- Specified by:
with
in interfaceMutableIntStackFactory
-
ofAll
Description copied from interface:MutableIntStackFactory
- Specified by:
ofAll
in interfaceMutableIntStackFactory
-
withAll
- Specified by:
withAll
in interfaceMutableIntStackFactory
-
ofAll
Description copied from interface:MutableIntStackFactory
- Specified by:
ofAll
in interfaceMutableIntStackFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceMutableIntStackFactory
- Since:
- 10.0
-
ofAllReversed
Description copied from interface:MutableIntStackFactory
- Specified by:
ofAllReversed
in interfaceMutableIntStackFactory
-
withAllReversed
- Specified by:
withAllReversed
in interfaceMutableIntStackFactory
-
ofAll
- Specified by:
ofAll
in interfaceMutableIntStackFactory
- Since:
- 9.0
-
withAll
- Specified by:
withAll
in interfaceMutableIntStackFactory
- Since:
- 9.0
-