Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and
other utilities for working with collections.
|
com.google.common.testing |
This package contains testing utilities.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
StandardRowSortedTable<R,C,V>
Implementation of
Table whose iteration ordering across row keys is
sorted by their natural ordering or by a supplied comparator. |
(package private) static class |
Tables.UnmodifiableRowSortedMap<R,C,V> |
class |
TreeBasedTable<R,C,V>
Implementation of
Table whose row keys and column keys are ordered
by their natural ordering or by supplied comparators. |
Modifier and Type | Method and Description |
---|---|
protected RowSortedTable<R,C,V> |
Tables.UnmodifiableRowSortedMap.delegate() |
static <R,C,V> RowSortedTable<R,C,V> |
Tables.unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.
|
Modifier and Type | Method and Description |
---|---|
static <R,C,V> RowSortedTable<R,C,V> |
Tables.unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.
|
Constructor and Description |
---|
UnmodifiableRowSortedMap(RowSortedTable<R,? extends C,? extends V> delegate) |
Modifier and Type | Method and Description |
---|---|
private static <R extends java.lang.Comparable,C extends java.lang.Comparable,V> |
FreshValueGenerator.generateRowSortedTable(R row,
C column,
V value) |