MCPcopy
hub / github.com/google/guava / appendTo

Method appendTo

guava/src/com/google/common/base/Joiner.java:390–393  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 3

joinMethod · 0.95
testMapMethod · 0.95
testEntriesMethod · 0.95

Calls 9

entrySetMethod · 0.65
iteratorMethod · 0.65
nextMethod · 0.65
toStringMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65
checkNotNullMethod · 0.45
hasNextMethod · 0.45
appendMethod · 0.45

Tested by 2

testMapMethod · 0.76
testEntriesMethod · 0.76