public static interface Table.Cell<R,C,V>
| Modifier and Type | Method and Description | 
|---|---|
| boolean | equals(Object obj)Compares the specified object with this cell for equality. | 
| C | getColumnKey()Returns the column key of this cell. | 
| R | getRowKey()Returns the row key of this cell. | 
| V | getValue()Returns the value of this cell. | 
| int | hashCode()Returns the hash code of this cell. | 
@Nullable C getColumnKey()
boolean equals(@Nullable Object obj)
int hashCode()
The hash code of a table cell is equal to Objects.hashCode(java.lang.Object...)(e.getRowKey(), e.getColumnKey(), e.getValue()).
Copyright © 2010-2015. All Rights Reserved.