Uses a naturally-ordered TreeMap to map keys to value collections. The collections returned by Multimap#keySet(), Multimap#keys(), and Multimap#asMap() will iterate through the keys in sorted order. For all multimaps generated by the resulting builder, the {@l
()
| 152 | */ |
| 153 | |
| 154 | @SuppressWarnings("rawtypes") |
| 155 | public static MultimapBuilderWithKeys<Comparable> treeKeys() { |
| 156 | return treeKeys(Ordering.natural()); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Uses a {@link TreeMap} sorted by the specified comparator to map keys to value collections. |
nothing calls this directly
no test coverage detected