ImmutableTable<R,C,V> | 
ImmutableTable.Builder.build() | 
 Returns a newly-created immutable table. 
 | 
ImmutableTable<R,C,V> | 
ImmutableTable.Builder.buildOrThrow() | 
 Returns a newly-created immutable table, or throws an exception if duplicate key pairs were
 added. 
 | 
static <R,C,V> ImmutableTable<R,C,V> | 
ImmutableTable.copyOf(Table<? extends R,? extends C,? extends V> table) | 
 Returns an immutable copy of the provided table. 
 | 
static <R,C,V> ImmutableTable<R,C,V> | 
ImmutableTable.of() | 
 Returns an empty immutable table. 
 | 
static <R,C,V> ImmutableTable<R,C,V> | 
ImmutableTable.of(R rowKey,
  C columnKey,
  V value) | 
 Returns an immutable table containing a single cell. 
 |