Class MutableLongSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableLongSetFactoryImpl
-
- All Implemented Interfaces:
MutableLongSetFactory
public class MutableLongSetFactoryImpl extends Object implements MutableLongSetFactory
MutableLongSetFactoryImpl is a factory implementation which creates instances of typeMutableLongSet. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableLongSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongSetempty()MutableLongSetof()MutableLongSetof(long... items)MutableLongSetofAll(Iterable<Long> iterable)MutableLongSetofAll(LongStream items)MutableLongSetofAll(LongIterable items)MutableLongSetwith()MutableLongSetwith(long... items)MutableLongSetwithAll(Iterable<Long> iterable)MutableLongSetwithAll(LongStream items)MutableLongSetwithAll(LongIterable items)MutableLongSetwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongSet empty()
- Specified by:
emptyin interfaceMutableLongSetFactory
-
of
public MutableLongSet of()
- Specified by:
ofin interfaceMutableLongSetFactory
-
with
public MutableLongSet with()
- Specified by:
within interfaceMutableLongSetFactory
-
withInitialCapacity
public MutableLongSet withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableLongSetFactory
-
of
public MutableLongSet of(long... items)
- Specified by:
ofin interfaceMutableLongSetFactory
-
with
public MutableLongSet with(long... items)
- Specified by:
within interfaceMutableLongSetFactory
-
ofAll
public MutableLongSet ofAll(LongIterable items)
- Specified by:
ofAllin interfaceMutableLongSetFactory
-
withAll
public MutableLongSet withAll(LongIterable items)
- Specified by:
withAllin interfaceMutableLongSetFactory
-
ofAll
public MutableLongSet ofAll(Iterable<Long> iterable)
- Specified by:
ofAllin interfaceMutableLongSetFactory- Since:
- 10.0
-
withAll
public MutableLongSet withAll(Iterable<Long> iterable)
- Specified by:
withAllin interfaceMutableLongSetFactory- Since:
- 10.0
-
ofAll
public MutableLongSet ofAll(LongStream items)
- Specified by:
ofAllin interfaceMutableLongSetFactory- Since:
- 9.0
-
withAll
public MutableLongSet withAll(LongStream items)
- Specified by:
withAllin interfaceMutableLongSetFactory- Since:
- 9.0
-
-