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