| 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 |
Tables.immutableCell(R rowKey, C columnKey, V value)
Returns an immutable cell with the specified row key, column key, and value.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
ForwardingTable.cellSet()
|
Set |
ArrayTable.cellSet()
Returns an unmodifiable set of all row key / column key / value triplets.
|
Set |
Table.cellSet()
Returns a set of all row key / column key / value triplets.
|
ImmutableSet |
ImmutableTable.cellSet()
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableTable |
ImmutableTable.Builder.put(Table
Adds the given
cell to the table, making it immutable if necessary.
|