Interface ImmutableBooleanStackFactory
-
- All Known Implementing Classes:
ImmutableBooleanStackFactoryImpl
public interface ImmutableBooleanStackFactory
A factory which creates instances of typeImmutableBooleanStack
. 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 ImmutableBooleanStack
empty()
ImmutableBooleanStack
of()
Same asempty()
.ImmutableBooleanStack
of(boolean one)
Same aswith(boolean)
.ImmutableBooleanStack
of(boolean... items)
Same aswith(boolean[])
.ImmutableBooleanStack
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.ImmutableBooleanStack
ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.ImmutableBooleanStack
ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable)
.ImmutableBooleanStack
with()
Same asempty()
.ImmutableBooleanStack
with(boolean one)
ImmutableBooleanStack
with(boolean... items)
ImmutableBooleanStack
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanStack
withAll(BooleanIterable items)
ImmutableBooleanStack
withAllReversed(BooleanIterable items)
-
-
-
Method Detail
-
empty
ImmutableBooleanStack empty()
- Since:
- 6.0
-
of
ImmutableBooleanStack of()
Same asempty()
.
-
with
ImmutableBooleanStack with()
Same asempty()
.
-
of
ImmutableBooleanStack of(boolean one)
Same aswith(boolean)
.
-
with
ImmutableBooleanStack with(boolean one)
-
of
ImmutableBooleanStack of(boolean... items)
Same aswith(boolean[])
.
-
with
ImmutableBooleanStack with(boolean... items)
-
ofAll
ImmutableBooleanStack ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.
-
withAll
ImmutableBooleanStack withAll(BooleanIterable items)
-
ofAll
ImmutableBooleanStack ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableBooleanStack withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
ofAllReversed
ImmutableBooleanStack ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable)
.
-
withAllReversed
ImmutableBooleanStack withAllReversed(BooleanIterable items)
-
-