Interface ImmutableBooleanStackFactory
-
public interface ImmutableBooleanStackFactoryA 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 ImmutableBooleanStackempty()ImmutableBooleanStackof()Same asempty().ImmutableBooleanStackof(boolean one)Same aswith(boolean).ImmutableBooleanStackof(boolean... items)Same aswith(boolean[]).ImmutableBooleanStackofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).ImmutableBooleanStackofAll(BooleanIterable items)Same aswithAll(BooleanIterable).ImmutableBooleanStackofAllReversed(BooleanIterable items)Same aswithAllReversed(BooleanIterable).ImmutableBooleanStackwith()Same asempty().ImmutableBooleanStackwith(boolean one)ImmutableBooleanStackwith(boolean... items)ImmutableBooleanStackwithAll(Iterable<Boolean> iterable)ImmutableBooleanStackwithAll(BooleanIterable items)ImmutableBooleanStackwithAllReversed(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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableBooleanStack withAll(Iterable<Boolean> iterable)
-
ofAllReversed
ImmutableBooleanStack ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable).
-
withAllReversed
ImmutableBooleanStack withAllReversed(BooleanIterable items)
-
-