Class ImmutableCharListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableCharListFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharListFactory
public class ImmutableCharListFactoryImpl extends java.lang.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 ImmutableCharListFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharList
empty()
ImmutableCharList
of()
Same asImmutableCharListFactory.empty()
.ImmutableCharList
of(char one)
Same asImmutableCharListFactory.with(char)
.ImmutableCharList
of(char... items)
ImmutableCharList
ofAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
ofAll(CharIterable items)
ImmutableCharList
with()
Same asImmutableCharListFactory.empty()
.ImmutableCharList
with(char one)
ImmutableCharList
with(char... items)
ImmutableCharList
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
withAll(CharIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharList empty()
- Specified by:
empty
in interfaceImmutableCharListFactory
-
of
public ImmutableCharList of()
Description copied from interface:ImmutableCharListFactory
Same asImmutableCharListFactory.empty()
.- Specified by:
of
in interfaceImmutableCharListFactory
-
with
public ImmutableCharList with()
Description copied from interface:ImmutableCharListFactory
Same asImmutableCharListFactory.empty()
.- Specified by:
with
in interfaceImmutableCharListFactory
-
of
public ImmutableCharList of(char one)
Description copied from interface:ImmutableCharListFactory
Same asImmutableCharListFactory.with(char)
.- Specified by:
of
in interfaceImmutableCharListFactory
-
with
public ImmutableCharList with(char one)
- Specified by:
with
in interfaceImmutableCharListFactory
-
of
public ImmutableCharList of(char... items)
Description copied from interface:ImmutableCharListFactory
- Specified by:
of
in interfaceImmutableCharListFactory
-
with
public ImmutableCharList with(char... items)
- Specified by:
with
in interfaceImmutableCharListFactory
-
ofAll
public ImmutableCharList ofAll(CharIterable items)
Description copied from interface:ImmutableCharListFactory
- Specified by:
ofAll
in interfaceImmutableCharListFactory
-
withAll
public ImmutableCharList withAll(CharIterable items)
- Specified by:
withAll
in interfaceImmutableCharListFactory
-
ofAll
public ImmutableCharList ofAll(java.lang.Iterable<java.lang.Character> iterable)
Description copied from interface:ImmutableCharListFactory
- Specified by:
ofAll
in interfaceImmutableCharListFactory
- Since:
- 10.0
-
withAll
public ImmutableCharList withAll(java.lang.Iterable<java.lang.Character> iterable)
- Specified by:
withAll
in interfaceImmutableCharListFactory
- Since:
- 10.0
-
-