Package | Description |
---|---|
com.google.common.primitives |
Static utilities for working with the eight primitive types and
void , and value types for
treating them as unsigned. |
Modifier and Type | Method and Description |
---|---|
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.add(double value)
Appends
value to the end of the values the built ImmutableDoubleArray will
contain. |
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.addAll(Collection<Double> values)
Appends
values , in order, to the end of the values the built ImmutableDoubleArray will contain. |
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.addAll(double[] values)
Appends
values , in order, to the end of the values the built ImmutableDoubleArray will contain. |
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.addAll(DoubleStream stream)
Appends all values from
stream , in order, to the end of the values the built ImmutableDoubleArray will contain. |
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.addAll(ImmutableDoubleArray values)
Appends
values , in order, to the end of the values the built ImmutableDoubleArray will contain. |
ImmutableDoubleArray.Builder |
ImmutableDoubleArray.Builder.addAll(Iterable<Double> values)
Appends
values , in order, to the end of the values the built ImmutableDoubleArray will contain. |
static ImmutableDoubleArray.Builder |
ImmutableDoubleArray.builder()
Returns a new, empty builder for
ImmutableDoubleArray instances, with a default initial
capacity. |
static ImmutableDoubleArray.Builder |
ImmutableDoubleArray.builder(int initialCapacity)
Returns a new, empty builder for
ImmutableDoubleArray instances, sized to hold up to
initialCapacity values without resizing. |
Copyright © 2010-2017. All Rights Reserved.