Class ImmutableByteSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableByteSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteSetFactory
public class ImmutableByteSetFactoryImpl extends Object implements ImmutableByteSetFactory
ImmutableByteSetFactoryImpl is a factory implementation which creates instances of typeImmutableByteSet. This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteSetempty()ImmutableByteSetof()ImmutableByteSetof(byte one)ImmutableByteSetof(byte... items)ImmutableByteSetofAll(Iterable<Byte> iterable)ImmutableByteSetofAll(ByteIterable items)ImmutableByteSetwith()ImmutableByteSetwith(byte one)ImmutableByteSetwith(byte... items)ImmutableByteSetwithAll(Iterable<Byte> iterable)ImmutableByteSetwithAll(ByteIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteSet empty()
- Specified by:
emptyin interfaceImmutableByteSetFactory
-
of
public ImmutableByteSet of()
- Specified by:
ofin interfaceImmutableByteSetFactory
-
with
public ImmutableByteSet with()
- Specified by:
within interfaceImmutableByteSetFactory
-
of
public ImmutableByteSet of(byte one)
- Specified by:
ofin interfaceImmutableByteSetFactory
-
with
public ImmutableByteSet with(byte one)
- Specified by:
within interfaceImmutableByteSetFactory
-
of
public ImmutableByteSet of(byte... items)
- Specified by:
ofin interfaceImmutableByteSetFactory
-
with
public ImmutableByteSet with(byte... items)
- Specified by:
within interfaceImmutableByteSetFactory
-
ofAll
public ImmutableByteSet ofAll(ByteIterable items)
- Specified by:
ofAllin interfaceImmutableByteSetFactory
-
withAll
public ImmutableByteSet withAll(ByteIterable items)
- Specified by:
withAllin interfaceImmutableByteSetFactory
-
ofAll
public ImmutableByteSet ofAll(Iterable<Byte> iterable)
- Specified by:
ofAllin interfaceImmutableByteSetFactory- Since:
- 10.0
-
withAll
public ImmutableByteSet withAll(Iterable<Byte> iterable)
- Specified by:
withAllin interfaceImmutableByteSetFactory- Since:
- 10.0
-
-