Interface ImmutableCharListFactory
-
public interface ImmutableCharListFactoryA 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 ImmutableCharListempty()ImmutableCharListof()Same asempty().ImmutableCharListof(char one)Same aswith(char).ImmutableCharListof(char... items)Same aswith(char[]).ImmutableCharListofAll(Iterable<Character> iterable)Same aswithAll(Iterable).ImmutableCharListofAll(CharIterable items)Same aswithAll(CharIterable).ImmutableCharListwith()Same asempty().ImmutableCharListwith(char one)ImmutableCharListwith(char... items)ImmutableCharListwithAll(Iterable<Character> iterable)ImmutableCharListwithAll(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(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableCharList withAll(Iterable<Character> iterable)
-
-