Class ImmutableByteStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.immutable.primitive.ImmutableByteStackFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteStackFactory
public class ImmutableByteStackFactoryImpl extends java.lang.Object implements ImmutableByteStackFactory
ImmutableByteStackFactoryImpl is a factory implementation which creates instances of typeImmutableByteStack. This file was automatically generated from template file immutablePrimitiveStackFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteStackempty()ImmutableByteStackof()Same asImmutableByteStackFactory.empty().ImmutableByteStackof(byte one)Same asImmutableByteStackFactory.with(byte).ImmutableByteStackof(byte... items)ImmutableByteStackofAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteStackofAll(ByteIterable items)ImmutableByteStackofAllReversed(ByteIterable items)ImmutableByteStackwith()Same asImmutableByteStackFactory.empty().ImmutableByteStackwith(byte one)ImmutableByteStackwith(byte... items)ImmutableByteStackwithAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteStackwithAll(ByteIterable items)ImmutableByteStackwithAllReversed(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteStackFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteStack empty()
- Specified by:
emptyin interfaceImmutableByteStackFactory
-
of
public ImmutableByteStack of()
Description copied from interface:ImmutableByteStackFactorySame asImmutableByteStackFactory.empty().- Specified by:
ofin interfaceImmutableByteStackFactory
-
with
public ImmutableByteStack with()
Description copied from interface:ImmutableByteStackFactorySame asImmutableByteStackFactory.empty().- Specified by:
within interfaceImmutableByteStackFactory
-
of
public ImmutableByteStack of(byte one)
Description copied from interface:ImmutableByteStackFactorySame asImmutableByteStackFactory.with(byte).- Specified by:
ofin interfaceImmutableByteStackFactory
-
with
public ImmutableByteStack with(byte one)
- Specified by:
within interfaceImmutableByteStackFactory
-
of
public ImmutableByteStack of(byte... items)
Description copied from interface:ImmutableByteStackFactory- Specified by:
ofin interfaceImmutableByteStackFactory
-
with
public ImmutableByteStack with(byte... items)
- Specified by:
within interfaceImmutableByteStackFactory
-
ofAll
public ImmutableByteStack ofAll(ByteIterable items)
Description copied from interface:ImmutableByteStackFactory- Specified by:
ofAllin interfaceImmutableByteStackFactory
-
withAll
public ImmutableByteStack withAll(ByteIterable items)
- Specified by:
withAllin interfaceImmutableByteStackFactory
-
ofAll
public ImmutableByteStack ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:ImmutableByteStackFactory- Specified by:
ofAllin interfaceImmutableByteStackFactory- Since:
- 10.0
-
withAll
public ImmutableByteStack withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAllin interfaceImmutableByteStackFactory- Since:
- 10.0
-
ofAllReversed
public ImmutableByteStack ofAllReversed(ByteIterable items)
Description copied from interface:ImmutableByteStackFactory- Specified by:
ofAllReversedin interfaceImmutableByteStackFactory
-
withAllReversed
public ImmutableByteStack withAllReversed(ByteIterable items)
- Specified by:
withAllReversedin interfaceImmutableByteStackFactory
-
-