Interface ImmutableCharStackFactory
-
- All Known Implementing Classes:
ImmutableCharStackFactoryImpl
public interface ImmutableCharStackFactory
A 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 ImmutableCharStack
empty()
ImmutableCharStack
of()
Same asempty()
.ImmutableCharStack
of(char one)
Same aswith(char)
.ImmutableCharStack
of(char... items)
Same aswith(char[])
.ImmutableCharStack
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.ImmutableCharStack
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.ImmutableCharStack
ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable)
.ImmutableCharStack
with()
Same asempty()
.ImmutableCharStack
with(char one)
ImmutableCharStack
with(char... items)
ImmutableCharStack
withAll(java.lang.Iterable<java.lang.Character> iterable)
ImmutableCharStack
withAll(CharIterable items)
ImmutableCharStack
withAllReversed(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(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableCharStack withAll(java.lang.Iterable<java.lang.Character> iterable)
-
ofAllReversed
ImmutableCharStack ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable)
.
-
withAllReversed
ImmutableCharStack withAllReversed(CharIterable items)
-
-