Class ImmutableCharListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableCharListFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharListFactory
public class ImmutableCharListFactoryImpl extends Object implements ImmutableCharListFactory
ImmutableCharListFactoryImpl is a factory implementation which creates instances of typeImmutableCharList. This file was automatically generated from template file immutablePrimitiveListFactoryImpl.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharListempty()ImmutableCharListof()ImmutableCharListof(char one)ImmutableCharListof(char... items)ImmutableCharListofAll(Iterable<Character> iterable)ImmutableCharListofAll(CharIterable items)ImmutableCharListwith()ImmutableCharListwith(char one)ImmutableCharListwith(char... items)ImmutableCharListwithAll(Iterable<Character> iterable)ImmutableCharListwithAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharList empty()
- Specified by:
emptyin interfaceImmutableCharListFactory
-
of
public ImmutableCharList of()
- Specified by:
ofin interfaceImmutableCharListFactory
-
with
public ImmutableCharList with()
- Specified by:
within interfaceImmutableCharListFactory
-
of
public ImmutableCharList of(char one)
- Specified by:
ofin interfaceImmutableCharListFactory
-
with
public ImmutableCharList with(char one)
- Specified by:
within interfaceImmutableCharListFactory
-
of
public ImmutableCharList of(char... items)
- Specified by:
ofin interfaceImmutableCharListFactory
-
with
public ImmutableCharList with(char... items)
- Specified by:
within interfaceImmutableCharListFactory
-
ofAll
public ImmutableCharList ofAll(CharIterable items)
- Specified by:
ofAllin interfaceImmutableCharListFactory
-
withAll
public ImmutableCharList withAll(CharIterable items)
- Specified by:
withAllin interfaceImmutableCharListFactory
-
ofAll
public ImmutableCharList ofAll(Iterable<Character> iterable)
- Specified by:
ofAllin interfaceImmutableCharListFactory- Since:
- 10.0
-
withAll
public ImmutableCharList withAll(Iterable<Character> iterable)
- Specified by:
withAllin interfaceImmutableCharListFactory- Since:
- 10.0
-
-