Class ImmutableShortSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableShortSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableShortSetFactory
public class ImmutableShortSetFactoryImpl extends Object implements ImmutableShortSetFactory
ImmutableShortSetFactoryImpl is a factory implementation which creates instances of typeImmutableShortSet. This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableShortSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableShortSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableShortSetempty()ImmutableShortSetof()ImmutableShortSetof(short one)ImmutableShortSetof(short... items)ImmutableShortSetofAll(Iterable<Short> iterable)ImmutableShortSetofAll(ShortIterable items)ImmutableShortSetwith()ImmutableShortSetwith(short one)ImmutableShortSetwith(short... items)ImmutableShortSetwithAll(Iterable<Short> iterable)ImmutableShortSetwithAll(ShortIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableShortSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableShortSet empty()
- Specified by:
emptyin interfaceImmutableShortSetFactory
-
of
public ImmutableShortSet of()
- Specified by:
ofin interfaceImmutableShortSetFactory
-
with
public ImmutableShortSet with()
- Specified by:
within interfaceImmutableShortSetFactory
-
of
public ImmutableShortSet of(short one)
- Specified by:
ofin interfaceImmutableShortSetFactory
-
with
public ImmutableShortSet with(short one)
- Specified by:
within interfaceImmutableShortSetFactory
-
of
public ImmutableShortSet of(short... items)
- Specified by:
ofin interfaceImmutableShortSetFactory
-
with
public ImmutableShortSet with(short... items)
- Specified by:
within interfaceImmutableShortSetFactory
-
ofAll
public ImmutableShortSet ofAll(ShortIterable items)
- Specified by:
ofAllin interfaceImmutableShortSetFactory
-
withAll
public ImmutableShortSet withAll(ShortIterable items)
- Specified by:
withAllin interfaceImmutableShortSetFactory
-
ofAll
public ImmutableShortSet ofAll(Iterable<Short> iterable)
- Specified by:
ofAllin interfaceImmutableShortSetFactory- Since:
- 10.0
-
withAll
public ImmutableShortSet withAll(Iterable<Short> iterable)
- Specified by:
withAllin interfaceImmutableShortSetFactory- Since:
- 10.0
-
-