Class ImmutableByteListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableByteListFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteListFactory
public class ImmutableByteListFactoryImpl extends 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()ImmutableByteListof(byte one)ImmutableByteListof(byte... items)ImmutableByteListofAll(Iterable<Byte> iterable)ImmutableByteListofAll(ByteIterable items)ImmutableByteListwith()ImmutableByteListwith(byte one)ImmutableByteListwith(byte... items)ImmutableByteListwithAll(Iterable<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()
- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with()
- Specified by:
within interfaceImmutableByteListFactory
-
of
public ImmutableByteList of(byte one)
- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with(byte one)
- Specified by:
within interfaceImmutableByteListFactory
-
of
public ImmutableByteList of(byte... items)
- Specified by:
ofin interfaceImmutableByteListFactory
-
with
public ImmutableByteList with(byte... items)
- Specified by:
within interfaceImmutableByteListFactory
-
ofAll
public ImmutableByteList ofAll(ByteIterable items)
- Specified by:
ofAllin interfaceImmutableByteListFactory
-
withAll
public ImmutableByteList withAll(ByteIterable items)
- Specified by:
withAllin interfaceImmutableByteListFactory
-
ofAll
public ImmutableByteList ofAll(Iterable<Byte> iterable)
- Specified by:
ofAllin interfaceImmutableByteListFactory- Since:
- 10.0
-
withAll
public ImmutableByteList withAll(Iterable<Byte> iterable)
- Specified by:
withAllin interfaceImmutableByteListFactory- Since:
- 10.0
-
-