Package com.google.common.collect
Interface Table.Cell<R,C,V>
Deprecated.
The Google Guava Core Libraries are deprecated and will not be part of the AEM SDK after April 2023
Row key / column key / value triplet corresponding to a mapping in a table.
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated.Compares the specified object with this cell for equality.Deprecated.Returns the column key of this cell.Deprecated.Returns the row key of this cell.getValue()
Deprecated.Returns the value of this cell.int
hashCode()
Deprecated.Returns the hash code of this cell.
-
Method Details
-
getRowKey
R getRowKey()Deprecated.Returns the row key of this cell. -
getColumnKey
C getColumnKey()Deprecated.Returns the column key of this cell. -
getValue
V getValue()Deprecated.Returns the value of this cell. -
equals
Deprecated.Compares the specified object with this cell for equality. Two cells are equal when they have equal row keys, column keys, and values. -
hashCode
int hashCode()Deprecated.Returns the hash code of this cell.The hash code of a table cell is equal to
Objects.hashCode(java.lang.Object...)
(e.getRowKey(), e.getColumnKey(), e.getValue())
.
-