Appends the string representation of each entry of {@code map}, using the previously configured separator and key-value separator, to {@code appendable}.
(A appendable, Map<?, ?> map)
| 388 | * configured separator and key-value separator, to {@code appendable}. |
| 389 | */ |
| 390 | @CanIgnoreReturnValue |
| 391 | public <A extends Appendable> A appendTo(A appendable, Map<?, ?> map) throws IOException { |
| 392 | return appendTo(appendable, map.entrySet()); |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * Appends the string representation of each entry of {@code map}, using the previously |