Returns a map joiner with the same behavior as this one, except automatically substituting nullText for any provided null keys or values.
(String nullText)
| 489 | |
| 490 | |
| 491 | public MapJoiner useForNull(String nullText) { |
| 492 | return new MapJoiner(joiner.useForNull(nullText), keyValueSeparator); |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | CharSequence toString(Object part) { |
nothing calls this directly
no test coverage detected