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 |
---|---|
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.add(long value)
Appends
value to the end of the values the built ImmutableLongArray will
contain. |
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.addAll(Collection<Long> values)
Appends
values , in order, to the end of the values the built ImmutableLongArray will contain. |
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.addAll(ImmutableLongArray values)
Appends
values , in order, to the end of the values the built ImmutableLongArray will contain. |
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.addAll(Iterable<Long> values)
Appends
values , in order, to the end of the values the built ImmutableLongArray will contain. |
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.addAll(long[] values)
Appends
values , in order, to the end of the values the built ImmutableLongArray will contain. |
ImmutableLongArray.Builder |
ImmutableLongArray.Builder.addAll(LongStream stream)
Appends all values from
stream , in order, to the end of the values the built ImmutableLongArray will contain. |
static ImmutableLongArray.Builder |
ImmutableLongArray.builder()
Returns a new, empty builder for
ImmutableLongArray instances, with a default initial
capacity. |
static ImmutableLongArray.Builder |
ImmutableLongArray.builder(int initialCapacity)
Returns a new, empty builder for
ImmutableLongArray instances, sized to hold up to
initialCapacity values without resizing. |
Copyright © 2010–2019. All rights reserved.