Interface ImmutableTable.Cell<R,C,V>

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

public static interface ImmutableTable.Cell<R,C,V>
Cell interface representing a table 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:
      the row key | 行键
    • getColumnKey

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

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