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 ed4756e commit c4e0ef5Copy full SHA for c4e0ef5
README.md
@@ -91,7 +91,8 @@ enum FileTableColumn implements Supplier<ColumnDef<File>> {
91
}
92
93
List<File> files = ...;
94
-JTable table = files.stream().collect(toTable(toColumnDef(FileTableColumn.values())));
+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());
0 commit comments