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(java.util.Collection<java.lang.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(java.util.stream.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(java.lang.Iterable<java.lang.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–2021. All rights reserved.