Class ImmutableBooleanStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.immutable.primitive.ImmutableBooleanStackFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanStackFactory
public class ImmutableBooleanStackFactoryImpl extends Object implements ImmutableBooleanStackFactory
ImmutableBooleanStackFactoryImpl is a factory implementation which creates instances of typeImmutableBooleanStack. This file was automatically generated from template file immutablePrimitiveStackFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableBooleanStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanStackempty()ImmutableBooleanStackof()ImmutableBooleanStackof(boolean one)ImmutableBooleanStackof(boolean... items)ImmutableBooleanStackofAll(Iterable<Boolean> iterable)ImmutableBooleanStackofAll(BooleanIterable items)ImmutableBooleanStackofAllReversed(BooleanIterable items)ImmutableBooleanStackwith()ImmutableBooleanStackwith(boolean one)ImmutableBooleanStackwith(boolean... items)ImmutableBooleanStackwithAll(Iterable<Boolean> iterable)ImmutableBooleanStackwithAll(BooleanIterable items)ImmutableBooleanStackwithAllReversed(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanStackFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanStack empty()
- Specified by:
emptyin interfaceImmutableBooleanStackFactory
-
of
public ImmutableBooleanStack of()
- Specified by:
ofin interfaceImmutableBooleanStackFactory
-
with
public ImmutableBooleanStack with()
- Specified by:
within interfaceImmutableBooleanStackFactory
-
of
public ImmutableBooleanStack of(boolean one)
- Specified by:
ofin interfaceImmutableBooleanStackFactory
-
with
public ImmutableBooleanStack with(boolean one)
- Specified by:
within interfaceImmutableBooleanStackFactory
-
of
public ImmutableBooleanStack of(boolean... items)
- Specified by:
ofin interfaceImmutableBooleanStackFactory
-
with
public ImmutableBooleanStack with(boolean... items)
- Specified by:
within interfaceImmutableBooleanStackFactory
-
ofAll
public ImmutableBooleanStack ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceImmutableBooleanStackFactory
-
withAll
public ImmutableBooleanStack withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanStackFactory
-
ofAll
public ImmutableBooleanStack ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceImmutableBooleanStackFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanStack withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanStackFactory- Since:
- 10.0
-
ofAllReversed
public ImmutableBooleanStack ofAllReversed(BooleanIterable items)
- Specified by:
ofAllReversedin interfaceImmutableBooleanStackFactory
-
withAllReversed
public ImmutableBooleanStack withAllReversed(BooleanIterable items)
- Specified by:
withAllReversedin interfaceImmutableBooleanStackFactory
-
-