Interface ImmutableLongBagFactory
-
public interface ImmutableLongBagFactoryA factory which creates instances of typeImmutableLongBag. This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableLongBagempty()ImmutableLongBagof()Same asempty().ImmutableLongBagof(long one)Same aswith(long).ImmutableLongBagof(long... items)Same aswith(long[]).ImmutableLongBagofAll(Iterable<Long> iterable)Same aswithAll(Iterable).ImmutableLongBagofAll(LongStream items)ImmutableLongBagofAll(LongIterable items)Same aswithAll(LongIterable).ImmutableLongBagwith()Same asempty().ImmutableLongBagwith(long one)ImmutableLongBagwith(long... items)ImmutableLongBagwithAll(Iterable<Long> iterable)ImmutableLongBagwithAll(LongStream items)ImmutableLongBagwithAll(LongIterable items)
-
-
-
Method Detail
-
empty
ImmutableLongBag empty()
- Since:
- 6.0
-
of
ImmutableLongBag of()
Same asempty().
-
with
ImmutableLongBag with()
Same asempty().
-
of
ImmutableLongBag of(long one)
Same aswith(long).
-
with
ImmutableLongBag with(long one)
-
of
ImmutableLongBag of(long... items)
Same aswith(long[]).
-
with
ImmutableLongBag with(long... items)
-
ofAll
ImmutableLongBag ofAll(LongIterable items)
Same aswithAll(LongIterable).
-
withAll
ImmutableLongBag withAll(LongIterable items)
-
ofAll
ImmutableLongBag ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableLongBag withAll(Iterable<Long> iterable)
-
ofAll
ImmutableLongBag ofAll(LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongBag withAll(LongStream items)
- Since:
- 9.0
-
-