Interface ImmutableCharListFactory
-
- All Known Implementing Classes:
ImmutableCharListFactoryImpl
public interface ImmutableCharListFactory
A factory which creates instances of typeImmutableCharList
. This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableCharList
empty()
ImmutableCharList
of()
Same asempty()
.ImmutableCharList
of(char one)
Same aswith(char)
.ImmutableCharList
of(char... items)
Same aswith(char[])
.ImmutableCharList
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.ImmutableCharList
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.ImmutableCharList
with()
Same asempty()
.ImmutableCharList
with(char one)
ImmutableCharList
with(char... items)
ImmutableCharList
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharList
withAll(CharIterable items)
-
-
-
Method Detail
-
empty
ImmutableCharList empty()
- Since:
- 6.0
-
of
ImmutableCharList of()
Same asempty()
.
-
with
ImmutableCharList with()
Same asempty()
.
-
of
ImmutableCharList of(char one)
Same aswith(char)
.
-
with
ImmutableCharList with(char one)
-
of
ImmutableCharList of(char... items)
Same aswith(char[])
.
-
with
ImmutableCharList with(char... items)
-
ofAll
ImmutableCharList ofAll(CharIterable items)
Same aswithAll(CharIterable)
.
-
withAll
ImmutableCharList withAll(CharIterable items)
-
ofAll
ImmutableCharList ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableCharList withAll(java.lang.Iterable<java.lang.Character> iterable)
-
-