()
| 175 | } |
| 176 | |
| 177 | @Override |
| 178 | public String toString() { |
| 179 | ToStringHelper helper = MoreObjects.toStringHelper(this).add("type", type); |
| 180 | if (comparator != null) { |
| 181 | helper.add("comparator", comparator); |
| 182 | } |
| 183 | return helper.toString(); |
| 184 | } |
| 185 | |
| 186 | /** Returns an empty mutable map whose keys will respect this {@link ElementOrder}. */ |
| 187 | <K extends T, V> Map<K, V> createMap(int expectedSize) { |
nothing calls this directly
no test coverage detected