We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e0ef5 commit 091cb67Copy full SHA for 091cb67
README.md
@@ -94,8 +94,8 @@ List<File> files = ...;
94
JTable table = files.stream()
95
.collect(toTable(toColumnDef(FileTableColumn.values())));
96
97
-// use enum ordinal() to get column index:
98
-String name = (String) table.getValueAt(0, FileColumn.NAME.ordinal());
+// use enum ordinal() to obtain column index:
+String name = (String) table.getValueAt(0, FileTableColumn.NAME.ordinal());
99
100
// translate column index to ColumnDef:
101
int columnIndex = ...;
0 commit comments