Interface ImmutableIntBagFactory
- All Known Implementing Classes:
ImmutableIntBagFactoryImpl
public interface ImmutableIntBagFactory
A factory which creates instances of type
ImmutableIntBag.
This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableIntBag empty()- Since:
- 6.0
-
of
ImmutableIntBag of()Same asempty(). -
with
ImmutableIntBag with()Same asempty(). -
of
Same aswith(int). -
with
-
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-