Interface MutableLongBagFactory
-
public interface MutableLongBagFactoryA factory which creates instances of typeMutableLongBag. This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
MutableLongBag empty()
-
of
MutableLongBag of()
Same asempty().
-
with
MutableLongBag with()
Same asempty().
-
of
MutableLongBag of(long... items)
Same aswith(long[]).
-
with
MutableLongBag with(long... items)
-
ofAll
MutableLongBag ofAll(LongIterable items)
Same aswithAll(LongIterable).
-
withAll
MutableLongBag withAll(LongIterable items)
-
ofAll
MutableLongBag ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
MutableLongBag withAll(Iterable<Long> iterable)
-
ofAll
MutableLongBag ofAll(LongStream items)
- Since:
- 9.0
-
withAll
MutableLongBag withAll(LongStream items)
- Since:
- 9.0
-
-