Class ImmutableByteListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableByteListFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteListFactory
public class ImmutableByteListFactoryImpl extends java.lang.Object implements ImmutableByteListFactory
ImmutableByteListFactoryImpl is a factory implementation which creates instances of typeImmutableByteList. This file was automatically generated from template file immutablePrimitiveListFactoryImpl.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteListempty()ImmutableByteListof()Same asImmutableByteListFactory.empty().ImmutableByteListof(byte one)Same asImmutableByteListFactory.with(byte).ImmutableByteListof(byte... items)ImmutableByteListofAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListofAll(ByteIterable items)ImmutableByteListwith()Same asImmutableByteListFactory.empty().ImmutableByteListwith(byte one)ImmutableByteListwith(byte... items)ImmutableByteListwithAll(java.lang.Iterable<java.lang.Byte> iterable)ImmutableByteListwithAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteList empty()
- Specified by:
emptyin interfaceImmutableByteListFactory
-
of
public ImmutableByteList of()
Description copied from interface:ImmutableByteListFactorySame asImmutableByteListFactory.empty().- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with()
Description copied from interface:ImmutableByteListFactorySame asImmutableByteListFactory.empty().- Specified by:
within interfaceImmutableByteListFactory
-
of
public ImmutableByteList of(byte one)
Description copied from interface:ImmutableByteListFactorySame asImmutableByteListFactory.with(byte).- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with(byte one)
- Specified by:
within interfaceImmutableByteListFactory
-
of
public ImmutableByteList of(byte... items)
Description copied from interface:ImmutableByteListFactory- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with(byte... items)
- Specified by:
within interfaceImmutableByteListFactory
-
ofAll
public ImmutableByteList ofAll(ByteIterable items)
Description copied from interface:ImmutableByteListFactory- Specified by:
ofAllin interfaceImmutableByteListFactory
-
withAll
public ImmutableByteList withAll(ByteIterable items)
- Specified by:
withAllin interfaceImmutableByteListFactory
-
ofAll
public ImmutableByteList ofAll(java.lang.Iterable<java.lang.Byte> iterable)
Description copied from interface:ImmutableByteListFactory- Specified by:
ofAllin interfaceImmutableByteListFactory- Since:
- 10.0
-
withAll
public ImmutableByteList withAll(java.lang.Iterable<java.lang.Byte> iterable)
- Specified by:
withAllin interfaceImmutableByteListFactory- Since:
- 10.0
-
-