public class Table<R,C,V>
extends java.lang.Object
Constructor and Description |
---|
Table(java.util.Map<R,java.util.Map<C,V>> table,
java.util.function.Supplier<java.util.Map<C,V>> rowSupplier) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
V |
computeIfAbsent(R row,
C col,
java.util.function.Supplier<V> valueSupplier) |
V |
get(R row,
C col) |
java.util.Map<C,V> |
getRow(R row) |
static <R,C,V> Table<R,C,V> |
hashBasedTable() |
V |
put(R row,
C col,
V val) |
com.google.common.collect.ImmutableTable<R,C,V> |
toImmutable() |