| 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Table | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. | 
| Uses of Table in com.google.common.collect | 
|---|
| Subinterfaces of Table in com.google.common.collect | |
|---|---|
 interface | 
RowSortedTable<R,C,V>
Interface that extends Table and whose rows are sorted. | 
| Classes in com.google.common.collect that implement Table | |
|---|---|
 class | 
ForwardingTable<R,C,V>
A table which forwards all its method calls to another table.  | 
 class | 
HashBasedTable<R,C,V>
Implementation of Table using hash tables. | 
 class | 
TreeBasedTable<R,C,V>
Implementation of Table whose row keys and column keys are ordered
 by their natural ordering or by supplied comparators. | 
| Methods in com.google.common.collect that return Table | ||
|---|---|---|
protected abstract  Table<R,C,V> | 
ForwardingTable.delegate()
 | 
|
static
 | 
Tables.transpose(Table<R,C,V> table)
Creates a transposed view of a given table that flips its row and column keys.  | 
|
| Methods in com.google.common.collect with parameters of type Table | ||
|---|---|---|
static
 | 
HashBasedTable.create(Table<? extends R,? extends C,? extends V> table)
Creates a HashBasedTable with the same mappings as the specified
 table. | 
|
 void | 
ForwardingTable.putAll(Table<? extends R,? extends C,? extends V> table)
 | 
|
 void | 
Table.putAll(Table<? extends R,? extends C,? extends V> table)
Copies all mappings from the specified table to this table.  | 
|
static
 | 
Tables.transpose(Table<R,C,V> table)
Creates a transposed view of a given table that flips its row and column keys.  | 
|
  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||