Interface ImmutableBooleanStackFactory
- All Known Implementing Classes:
ImmutableBooleanStackFactoryImpl
public interface ImmutableBooleanStackFactory
A factory which creates instances of type
ImmutableBooleanStack
.
This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
Method Summary
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(Iterable<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(Iterable<Boolean> iterable)
ImmutableBooleanStack
withAll(BooleanIterable items)
ImmutableBooleanStack
withAllReversed(BooleanIterable items)
-
Method Details
-
empty
ImmutableBooleanStack empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableBooleanStack with()Same asempty()
. -
of
Same aswith(boolean)
. -
with
-
of
Same aswith(boolean[])
. -
with
-
ofAll
Same aswithAll(BooleanIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-
ofAllReversed
Same aswithAllReversed(BooleanIterable)
. -
withAllReversed
-