Interface ImmutableDoubleBagFactory
-
public interface ImmutableDoubleBagFactoryA factory which creates instances of typeImmutableDoubleBag. 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 ImmutableDoubleBagempty()ImmutableDoubleBagof()Same asempty().ImmutableDoubleBagof(double one)Same aswith(double).ImmutableDoubleBagof(double... items)Same aswith(double[]).ImmutableDoubleBagofAll(Iterable<Double> iterable)Same aswithAll(Iterable).ImmutableDoubleBagofAll(DoubleStream items)ImmutableDoubleBagofAll(DoubleIterable items)Same aswithAll(DoubleIterable).ImmutableDoubleBagwith()Same asempty().ImmutableDoubleBagwith(double one)ImmutableDoubleBagwith(double... items)ImmutableDoubleBagwithAll(Iterable<Double> iterable)ImmutableDoubleBagwithAll(DoubleStream items)ImmutableDoubleBagwithAll(DoubleIterable items)
-
-
-
Method Detail
-
empty
ImmutableDoubleBag empty()
- Since:
- 6.0
-
of
ImmutableDoubleBag of()
Same asempty().
-
with
ImmutableDoubleBag with()
Same asempty().
-
of
ImmutableDoubleBag of(double one)
Same aswith(double).
-
with
ImmutableDoubleBag with(double one)
-
of
ImmutableDoubleBag of(double... items)
Same aswith(double[]).
-
with
ImmutableDoubleBag with(double... items)
-
ofAll
ImmutableDoubleBag ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
ImmutableDoubleBag withAll(DoubleIterable items)
-
ofAll
ImmutableDoubleBag ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableDoubleBag withAll(Iterable<Double> iterable)
-
ofAll
ImmutableDoubleBag ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
ImmutableDoubleBag withAll(DoubleStream items)
- Since:
- 9.0
-
-