Returns the comparator used to order this map, or null if this map uses its keys' natural order. @return the comparator associated with this sorted map, or null if it uses its keys' natural sort method.
()
| 268 | * <tt>null</tt> if it uses its keys' natural sort method. |
| 269 | */ |
| 270 | @Override |
| 271 | public Comparator<? super K> comparator() { |
| 272 | return comparator; |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Returns the first (lowest) key currently in this sorted map. |
no outgoing calls
no test coverage detected