Class MutableShortSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableShortSetFactoryImpl
-
- All Implemented Interfaces:
MutableShortSetFactory
public class MutableShortSetFactoryImpl extends Object implements MutableShortSetFactory
MutableShortSetFactoryImpl is a factory implementation which creates instances of typeMutableShortSet. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortSetempty()MutableShortSetof()MutableShortSetof(short... items)MutableShortSetofAll(Iterable<Short> iterable)MutableShortSetofAll(ShortIterable items)MutableShortSetwith()MutableShortSetwith(short... items)MutableShortSetwithAll(Iterable<Short> iterable)MutableShortSetwithAll(ShortIterable items)MutableShortSetwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortSet empty()
- Specified by:
emptyin interfaceMutableShortSetFactory
-
of
public MutableShortSet of()
- Specified by:
ofin interfaceMutableShortSetFactory
-
with
public MutableShortSet with()
- Specified by:
within interfaceMutableShortSetFactory
-
withInitialCapacity
public MutableShortSet withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortSetFactory
-
of
public MutableShortSet of(short... items)
- Specified by:
ofin interfaceMutableShortSetFactory
-
with
public MutableShortSet with(short... items)
- Specified by:
within interfaceMutableShortSetFactory
-
ofAll
public MutableShortSet ofAll(ShortIterable items)
- Specified by:
ofAllin interfaceMutableShortSetFactory
-
withAll
public MutableShortSet withAll(ShortIterable items)
- Specified by:
withAllin interfaceMutableShortSetFactory
-
ofAll
public MutableShortSet ofAll(Iterable<Short> iterable)
- Specified by:
ofAllin interfaceMutableShortSetFactory- Since:
- 10.0
-
withAll
public MutableShortSet withAll(Iterable<Short> iterable)
- Specified by:
withAllin interfaceMutableShortSetFactory- Since:
- 10.0
-
-