Class MutableLongBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableLongBagFactoryImpl
-
- All Implemented Interfaces:
MutableLongBagFactory
public class MutableLongBagFactoryImpl extends Object implements MutableLongBagFactory
MutableLongBagFactoryImpl is a factory implementation which creates instances of typeMutableLongBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableLongBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongBagempty()MutableLongBagof()MutableLongBagof(long... items)MutableLongBagofAll(Iterable<Long> iterable)MutableLongBagofAll(LongStream items)MutableLongBagofAll(LongIterable items)MutableLongBagwith()MutableLongBagwith(long... items)MutableLongBagwithAll(Iterable<Long> iterable)MutableLongBagwithAll(LongStream items)MutableLongBagwithAll(LongIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongBag empty()
- Specified by:
emptyin interfaceMutableLongBagFactory
-
of
public MutableLongBag of()
- Specified by:
ofin interfaceMutableLongBagFactory
-
with
public MutableLongBag with()
- Specified by:
within interfaceMutableLongBagFactory
-
of
public MutableLongBag of(long... items)
- Specified by:
ofin interfaceMutableLongBagFactory
-
with
public MutableLongBag with(long... items)
- Specified by:
within interfaceMutableLongBagFactory
-
ofAll
public MutableLongBag ofAll(LongIterable items)
- Specified by:
ofAllin interfaceMutableLongBagFactory
-
withAll
public MutableLongBag withAll(LongIterable items)
- Specified by:
withAllin interfaceMutableLongBagFactory
-
ofAll
public MutableLongBag ofAll(Iterable<Long> iterable)
- Specified by:
ofAllin interfaceMutableLongBagFactory- Since:
- 10.0
-
withAll
public MutableLongBag withAll(Iterable<Long> iterable)
- Specified by:
withAllin interfaceMutableLongBagFactory- Since:
- 10.0
-
ofAll
public MutableLongBag ofAll(LongStream items)
- Specified by:
ofAllin interfaceMutableLongBagFactory- Since:
- 9.0
-
withAll
public MutableLongBag withAll(LongStream items)
- Specified by:
withAllin interfaceMutableLongBagFactory- Since:
- 9.0
-
-