public static interface Table.Visitor<T>
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
visit(long seqno,
T element,
int row,
int column)
Iteration over the table, used by
Table.forEach(long, long, Table.Visitor). |
boolean visit(long seqno,
T element,
int row,
int column)
Table.forEach(long, long, Table.Visitor).seqno - The current seqnoelement - The element at matrix[row][column]row - The current rowcolumn - The current column