| 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 |
|---|---|
static <R |
ImmutableTable.builder()
Returns a new builder.
|
ImmutableTable |
ImmutableTable.Builder.orderColumnsBy(Comparator
Specifies the ordering of the generated table's columns.
|
ImmutableTable |
ImmutableTable.Builder.orderRowsBy(Comparator
Specifies the ordering of the generated table's rows.
|
ImmutableTable |
ImmutableTable.Builder.put(R rowKey, C columnKey, V value)
Associates the (
rowKey,
columnKey) pair with
value in the built table.
|
ImmutableTable |
ImmutableTable.Builder.put(Table
Adds the given
cell to the table, making it immutable if necessary.
|
ImmutableTable |
ImmutableTable.Builder.putAll(Table
Associates all of the given table's keys and values in the built table.
|