| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableList |
ImmutableList.Builder.add(E... elements)
Adds each element of
elements to the
ImmutableList.
|
ImmutableList |
ImmutableList.Builder.add(E element)
Adds
element to the
ImmutableList.
|
ImmutableList |
ImmutableList.Builder.addAll(Iterable
Adds each element of
elements to the
ImmutableList.
|
ImmutableList |
ImmutableList.Builder.addAll(Iterator
Adds each element of
elements to the
ImmutableList.
|
static <E> ImmutableList |
ImmutableList.builder()
Returns a new builder.
|