Uses of Class
com.google.common.primitives.ImmutableDoubleArray.Builder
-
Packages that use ImmutableDoubleArray.Builder Package Description com.google.common.primitives Static utilities for working with the eight primitive types andvoid
, and value types for treating them as unsigned. -
-
Uses of ImmutableDoubleArray.Builder in com.google.common.primitives
Methods in com.google.common.primitives that return ImmutableDoubleArray.Builder Modifier and Type Method Description ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. add(double value)
Appendsvalue
to the end of the values the builtImmutableDoubleArray
will contain.ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. addAll(double[] values)
Appendsvalues
, in order, to the end of the values the builtImmutableDoubleArray
will contain.ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. addAll(ImmutableDoubleArray values)
Appendsvalues
, in order, to the end of the values the builtImmutableDoubleArray
will contain.ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. addAll(java.lang.Iterable<java.lang.Double> values)
Appendsvalues
, in order, to the end of the values the builtImmutableDoubleArray
will contain.ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. addAll(java.util.Collection<java.lang.Double> values)
Appendsvalues
, in order, to the end of the values the builtImmutableDoubleArray
will contain.ImmutableDoubleArray.Builder
ImmutableDoubleArray.Builder. addAll(java.util.stream.DoubleStream stream)
Appends all values fromstream
, in order, to the end of the values the builtImmutableDoubleArray
will contain.static ImmutableDoubleArray.Builder
ImmutableDoubleArray. builder()
Returns a new, empty builder forImmutableDoubleArray
instances, with a default initial capacity.static ImmutableDoubleArray.Builder
ImmutableDoubleArray. builder(int initialCapacity)
Returns a new, empty builder forImmutableDoubleArray
instances, sized to hold up toinitialCapacity
values without resizing.
-