Returns a map joiner with the same behavior as this one, except automatically substituting nullText for any provided null keys or values.
(String nullText)
| 448 | * {@code nullText} for any provided null keys or values. |
| 449 | */ |
| 450 | public MapJoiner useForNull(String nullText) { |
| 451 | return new MapJoiner(joiner.useForNull(nullText), keyValueSeparator); |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | CharSequence toString(Object part) { |
nothing calls this directly
no test coverage detected