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 MutableIntStackempty()MutableIntStackof()Same asMutableIntStackFactory.empty().MutableIntStackof(int... items)Same asMutableIntStackFactory.with(int[]).MutableIntStackofAll(Iterable<Integer> iterable)MutableIntStackofAll(IntStream items)MutableIntStackofAll(IntIterable items)MutableIntStackofAllReversed(IntIterable items)static MutableIntStackFactoryImplvalueOf(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.MutableIntStackwith()Same asMutableIntStackFactory.empty().MutableIntStackwith(int... items)MutableIntStackwithAll(Iterable<Integer> iterable)MutableIntStackwithAll(IntStream items)MutableIntStackwithAll(IntIterable items)MutableIntStackwithAllReversed(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:
emptyin interfaceMutableIntStackFactory
-
of
Description copied from interface:MutableIntStackFactorySame asMutableIntStackFactory.empty().- Specified by:
ofin interfaceMutableIntStackFactory
-
with
Description copied from interface:MutableIntStackFactorySame asMutableIntStackFactory.empty().- Specified by:
within interfaceMutableIntStackFactory
-
of
Description copied from interface:MutableIntStackFactorySame asMutableIntStackFactory.with(int[]).- Specified by:
ofin interfaceMutableIntStackFactory
-
with
- Specified by:
within interfaceMutableIntStackFactory
-
ofAll
Description copied from interface:MutableIntStackFactory- Specified by:
ofAllin interfaceMutableIntStackFactory
-
withAll
- Specified by:
withAllin interfaceMutableIntStackFactory
-
ofAll
Description copied from interface:MutableIntStackFactory- Specified by:
ofAllin interfaceMutableIntStackFactory- Since:
- 10.0
-
withAll
- Specified by:
withAllin interfaceMutableIntStackFactory- Since:
- 10.0
-
ofAllReversed
Description copied from interface:MutableIntStackFactory- Specified by:
ofAllReversedin interfaceMutableIntStackFactory
-
withAllReversed
- Specified by:
withAllReversedin interfaceMutableIntStackFactory
-
ofAll
- Specified by:
ofAllin interfaceMutableIntStackFactory- Since:
- 9.0
-
withAll
- Specified by:
withAllin interfaceMutableIntStackFactory- Since:
- 9.0
-