有没有办法做到这一点?预期的效果是 rowMap 和 columnMap 条目值将按值排序。
问题是如果没有表中的基础映射,我无法创建比较器。
Table table = TreeBasedTable.create(?,?);
Map<String, Map<String, String>> rowMap = table.rowMap();
Map<String, String> thisMapShouldBeSortedByValues = rowMap.get(smth);
Map<String, Map<String, String>> columnMap = table.columnMap();
Map<String, String> thisMapShouldBeSortedByValues = columnMap.get(smth);
现在我总是必须在之后对 rowMap 和 columnMap 进行排序并在其上分配新的 TreeMap。