Enum MutableCharStackFactoryImpl
java.lang.Object
java.lang.Enum<MutableCharStackFactoryImpl>
org.eclipse.collections.impl.stack.mutable.primitive.MutableCharStackFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<MutableCharStackFactoryImpl>,java.lang.constant.Constable,MutableCharStackFactory
public enum MutableCharStackFactoryImpl extends Enum<MutableCharStackFactoryImpl> implements MutableCharStackFactory
MutableCharStackFactoryImpl is a factory implementation which creates instances of type
MutableCharStack.
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 MutableCharStackempty()MutableCharStackof()Same asMutableCharStackFactory.empty().MutableCharStackof(char... items)Same asMutableCharStackFactory.with(char[]).MutableCharStackofAll(Iterable<Character> iterable)MutableCharStackofAll(CharIterable items)MutableCharStackofAllReversed(CharIterable items)static MutableCharStackFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static MutableCharStackFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.MutableCharStackwith()Same asMutableCharStackFactory.empty().MutableCharStackwith(char... items)MutableCharStackwithAll(Iterable<Character> iterable)MutableCharStackwithAll(CharIterable items)MutableCharStackwithAllReversed(CharIterable 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 interfaceMutableCharStackFactory
-
of
Description copied from interface:MutableCharStackFactorySame asMutableCharStackFactory.empty().- Specified by:
ofin interfaceMutableCharStackFactory
-
with
Description copied from interface:MutableCharStackFactorySame asMutableCharStackFactory.empty().- Specified by:
within interfaceMutableCharStackFactory
-
of
Description copied from interface:MutableCharStackFactorySame asMutableCharStackFactory.with(char[]).- Specified by:
ofin interfaceMutableCharStackFactory
-
with
- Specified by:
within interfaceMutableCharStackFactory
-
ofAll
Description copied from interface:MutableCharStackFactory- Specified by:
ofAllin interfaceMutableCharStackFactory
-
withAll
- Specified by:
withAllin interfaceMutableCharStackFactory
-
ofAll
Description copied from interface:MutableCharStackFactory- Specified by:
ofAllin interfaceMutableCharStackFactory- Since:
- 10.0
-
withAll
- Specified by:
withAllin interfaceMutableCharStackFactory- Since:
- 10.0
-
ofAllReversed
Description copied from interface:MutableCharStackFactory- Specified by:
ofAllReversedin interfaceMutableCharStackFactory
-
withAllReversed
- Specified by:
withAllReversedin interfaceMutableCharStackFactory
-