それを行うための可能な方法はありますか?期待される効果は、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を割り当てる必要があります。