Interface Table<R,C,V>

Type Parameters:
R - 行键类型
C - 列键类型
V - 值类型
All Superinterfaces:
Iterable<Table.Cell<R,C,V>>
All Known Implementing Classes:
AbstractTable, RowKeyTable

public interface Table<R,C,V> extends Iterable<Table.Cell<R,C,V>>
表格数据结构定义 此结构类似于Guava的Table接口,使用两个键映射到一个值,类似于表格结构
Since:
Java 17+
Author:
Kimi Liu