Interface MutableLongBagFactory
-
- All Known Implementing Classes:
MutableLongBagFactoryImpl
public interface MutableLongBagFactory
A 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 MutableLongBag
empty()
MutableLongBag
of()
Same asempty()
.MutableLongBag
of(long... items)
Same aswith(long[])
.MutableLongBag
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.MutableLongBag
ofAll(java.util.stream.LongStream items)
MutableLongBag
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.MutableLongBag
with()
Same asempty()
.MutableLongBag
with(long... items)
MutableLongBag
withAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongBag
withAll(java.util.stream.LongStream items)
MutableLongBag
withAll(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(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableLongBag withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAll
MutableLongBag ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
MutableLongBag withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-