Interface ImmutableLongBagFactory
- All Known Implementing Classes:
ImmutableLongBagFactoryImpl
public interface ImmutableLongBagFactory
A factory which creates instances of type
ImmutableLongBag
.
This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableLongBag
empty()
ImmutableLongBag
of()
Same asempty()
.ImmutableLongBag
of(long one)
Same aswith(long)
.ImmutableLongBag
of(long... items)
Same aswith(long[])
.ImmutableLongBag
ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable)
.ImmutableLongBag
ofAll(LongStream items)
ImmutableLongBag
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.ImmutableLongBag
with()
Same asempty()
.ImmutableLongBag
with(long one)
ImmutableLongBag
with(long... items)
ImmutableLongBag
withAll(Iterable<Long> iterable)
ImmutableLongBag
withAll(LongStream items)
ImmutableLongBag
withAll(LongIterable items)
-
Method Details
-
empty
ImmutableLongBag empty()- Since:
- 6.0
-
of
ImmutableLongBag of()Same asempty()
. -
with
ImmutableLongBag with()Same asempty()
. -
of
Same aswith(long)
. -
with
-
of
Same aswith(long[])
. -
with
-
ofAll
Same aswithAll(LongIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-