Returns a string representation for this MapMaker instance. The exact form of the returned string is not specified.
()
| 292 | * string is not specified. |
| 293 | */ |
| 294 | @Override |
| 295 | public String toString() { |
| 296 | MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this); |
| 297 | if (initialCapacity != UNSET_INT) { |
| 298 | s.add("initialCapacity", initialCapacity); |
| 299 | } |
| 300 | if (concurrencyLevel != UNSET_INT) { |
| 301 | s.add("concurrencyLevel", concurrencyLevel); |
| 302 | } |
| 303 | if (keyStrength != null) { |
| 304 | s.add("keyStrength", Ascii.toLowerCase(keyStrength.toString())); |
| 305 | } |
| 306 | if (valueStrength != null) { |
| 307 | s.add("valueStrength", Ascii.toLowerCase(valueStrength.toString())); |
| 308 | } |
| 309 | if (keyEquivalence != null) { |
| 310 | s.addValue("keyEquivalence"); |
| 311 | } |
| 312 | return s.toString(); |
| 313 | } |
| 314 | } |
nothing calls this directly
no test coverage detected