Interface Table.Cell<R,C,V>

Type Parameters:
R - row key type | 行键类型
C - column key type | 列键类型
V - value type | 值类型
Enclosing interface:
Table<R,C,V>

public static interface Table.Cell<R,C,V>
Cell - A row-column-value triple Cell - 行列值三元组
Since:
JDK 25, opencode-base-collections V1.0.0
Author:
Leon Soo www.LeonSoo.com
  • Method Summary

    Modifier and Type
    Method
    Description
    Return the column key.
    Return the row key.
    Return the value.
  • Method Details

    • getRowKey

      R getRowKey()
      Return the row key. 返回行键。
      Returns:
      row key | 行键
    • getColumnKey

      C getColumnKey()
      Return the column key. 返回列键。
      Returns:
      column key | 列键
    • getValue

      V getValue()
      Return the value. 返回值。
      Returns:
      value | 值