Class MutableCharStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableCharStackFactoryImpl
-
- All Implemented Interfaces:
MutableCharStackFactory
public class MutableCharStackFactoryImpl extends Object implements MutableCharStackFactory
MutableCharStackFactoryImpl is a factory implementation which creates instances of typeMutableCharStack. This file was automatically generated from template file mutablePrimitiveStackFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableCharStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableCharStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCharStackempty()MutableCharStackof()MutableCharStackof(char... items)MutableCharStackofAll(Iterable<Character> iterable)MutableCharStackofAll(CharIterable items)MutableCharStackofAllReversed(CharIterable items)MutableCharStackwith()MutableCharStackwith(char... items)MutableCharStackwithAll(Iterable<Character> iterable)MutableCharStackwithAll(CharIterable items)MutableCharStackwithAllReversed(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharStack empty()
- Specified by:
emptyin interfaceMutableCharStackFactory
-
of
public MutableCharStack of()
- Specified by:
ofin interfaceMutableCharStackFactory
-
with
public MutableCharStack with()
- Specified by:
within interfaceMutableCharStackFactory
-
of
public MutableCharStack of(char... items)
- Specified by:
ofin interfaceMutableCharStackFactory
-
with
public MutableCharStack with(char... items)
- Specified by:
within interfaceMutableCharStackFactory
-
ofAll
public MutableCharStack ofAll(CharIterable items)
- Specified by:
ofAllin interfaceMutableCharStackFactory
-
withAll
public MutableCharStack withAll(CharIterable items)
- Specified by:
withAllin interfaceMutableCharStackFactory
-
ofAll
public MutableCharStack ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceMutableCharStackFactory- Since:
- 10.0
-
withAll
public MutableCharStack withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceMutableCharStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableCharStack ofAllReversed(CharIterable items)
- Specified by:
ofAllReversedin interfaceMutableCharStackFactory
-
withAllReversed
public MutableCharStack withAllReversed(CharIterable items)
- Specified by:
withAllReversedin interfaceMutableCharStackFactory
-
-