Interface ImmutableIntBagFactory
-
public interface ImmutableIntBagFactoryA factory which creates instances of typeImmutableIntBag. 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 ImmutableIntBagempty()ImmutableIntBagof()Same asempty().ImmutableIntBagof(int one)Same aswith(int).ImmutableIntBagof(int... items)Same aswith(int[]).ImmutableIntBagofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).ImmutableIntBagofAll(IntStream items)ImmutableIntBagofAll(IntIterable items)Same aswithAll(IntIterable).ImmutableIntBagwith()Same asempty().ImmutableIntBagwith(int one)ImmutableIntBagwith(int... items)ImmutableIntBagwithAll(Iterable<Integer> iterable)ImmutableIntBagwithAll(IntStream items)ImmutableIntBagwithAll(IntIterable items)
-
-
-
Method Detail
-
empty
ImmutableIntBag empty()
- Since:
- 6.0
-
of
ImmutableIntBag of()
Same asempty().
-
with
ImmutableIntBag with()
Same asempty().
-
of
ImmutableIntBag of(int one)
Same aswith(int).
-
with
ImmutableIntBag with(int one)
-
of
ImmutableIntBag of(int... items)
Same aswith(int[]).
-
with
ImmutableIntBag with(int... items)
-
ofAll
ImmutableIntBag ofAll(IntIterable items)
Same aswithAll(IntIterable).
-
withAll
ImmutableIntBag withAll(IntIterable items)
-
ofAll
ImmutableIntBag ofAll(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableIntBag withAll(Iterable<Integer> iterable)
-
ofAll
ImmutableIntBag ofAll(IntStream items)
- Since:
- 9.0
-
withAll
ImmutableIntBag withAll(IntStream items)
- Since:
- 9.0
-
-