Interface MutableLongBagFactory
- All Known Implementing Classes:
MutableLongBagFactoryImpl
public interface MutableLongBagFactory
A factory which creates instances of type
MutableLongBag.
This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongBagempty()MutableLongBagof()Same asempty().MutableLongBagof(long... items)Same aswith(long[]).MutableLongBagofAll(Iterable<Long> iterable)Same aswithAll(Iterable).MutableLongBagofAll(LongStream items)MutableLongBagofAll(LongIterable items)Same aswithAll(LongIterable).MutableLongBagwith()Same asempty().MutableLongBagwith(long... items)MutableLongBagwithAll(Iterable<Long> iterable)MutableLongBagwithAll(LongStream items)MutableLongBagwithAll(LongIterable items)
-
Method Details
-
empty
MutableLongBag empty() -
of
MutableLongBag of()Same asempty(). -
with
MutableLongBag with()Same asempty(). -
of
Same aswith(long[]). -
with
-
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-