Class ImmutableCharStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.immutable.primitive.ImmutableCharStackFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharStackFactory
public class ImmutableCharStackFactoryImpl extends Object implements ImmutableCharStackFactory
ImmutableCharStackFactoryImpl is a factory implementation which creates instances of typeImmutableCharStack. This file was automatically generated from template file immutablePrimitiveStackFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharStackempty()ImmutableCharStackof()ImmutableCharStackof(char one)ImmutableCharStackof(char... items)ImmutableCharStackofAll(Iterable<Character> iterable)ImmutableCharStackofAll(CharIterable items)ImmutableCharStackofAllReversed(CharIterable items)ImmutableCharStackwith()ImmutableCharStackwith(char one)ImmutableCharStackwith(char... items)ImmutableCharStackwithAll(Iterable<Character> iterable)ImmutableCharStackwithAll(CharIterable items)ImmutableCharStackwithAllReversed(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharStackFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharStack empty()
- Specified by:
emptyin interfaceImmutableCharStackFactory
-
of
public ImmutableCharStack of()
- Specified by:
ofin interfaceImmutableCharStackFactory
-
with
public ImmutableCharStack with()
- Specified by:
within interfaceImmutableCharStackFactory
-
of
public ImmutableCharStack of(char one)
- Specified by:
ofin interfaceImmutableCharStackFactory
-
with
public ImmutableCharStack with(char one)
- Specified by:
within interfaceImmutableCharStackFactory
-
of
public ImmutableCharStack of(char... items)
- Specified by:
ofin interfaceImmutableCharStackFactory
-
with
public ImmutableCharStack with(char... items)
- Specified by:
within interfaceImmutableCharStackFactory
-
ofAll
public ImmutableCharStack ofAll(CharIterable items)
- Specified by:
ofAllin interfaceImmutableCharStackFactory
-
withAll
public ImmutableCharStack withAll(CharIterable items)
- Specified by:
withAllin interfaceImmutableCharStackFactory
-
ofAll
public ImmutableCharStack ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceImmutableCharStackFactory- Since:
- 10.0
-
withAll
public ImmutableCharStack withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceImmutableCharStackFactory- Since:
- 10.0
-
ofAllReversed
public ImmutableCharStack ofAllReversed(CharIterable items)
- Specified by:
ofAllReversedin interfaceImmutableCharStackFactory
-
withAllReversed
public ImmutableCharStack withAllReversed(CharIterable items)
- Specified by:
withAllReversedin interfaceImmutableCharStackFactory
-
-