Interface ImmutableCharStackFactory
-
public interface ImmutableCharStackFactoryA factory which creates instances of typeImmutableCharStack. This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableCharStackempty()ImmutableCharStackof()Same asempty().ImmutableCharStackof(char one)Same aswith(char).ImmutableCharStackof(char... items)Same aswith(char[]).ImmutableCharStackofAll(Iterable<Character> iterable)Same aswithAll(Iterable).ImmutableCharStackofAll(CharIterable items)Same aswithAll(CharIterable).ImmutableCharStackofAllReversed(CharIterable items)Same aswithAllReversed(CharIterable).ImmutableCharStackwith()Same asempty().ImmutableCharStackwith(char one)ImmutableCharStackwith(char... items)ImmutableCharStackwithAll(Iterable<Character> iterable)ImmutableCharStackwithAll(CharIterable items)ImmutableCharStackwithAllReversed(CharIterable items)
-
-
-
Method Detail
-
empty
ImmutableCharStack empty()
- Since:
- 6.0
-
of
ImmutableCharStack of()
Same asempty().
-
with
ImmutableCharStack with()
Same asempty().
-
of
ImmutableCharStack of(char one)
Same aswith(char).
-
with
ImmutableCharStack with(char one)
-
of
ImmutableCharStack of(char... items)
Same aswith(char[]).
-
with
ImmutableCharStack with(char... items)
-
ofAll
ImmutableCharStack ofAll(CharIterable items)
Same aswithAll(CharIterable).
-
withAll
ImmutableCharStack withAll(CharIterable items)
-
ofAll
ImmutableCharStack ofAll(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableCharStack withAll(Iterable<Character> iterable)
-
ofAllReversed
ImmutableCharStack ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable).
-
withAllReversed
ImmutableCharStack withAllReversed(CharIterable items)
-
-