Home | History | Annotate | Download | only in base

Lines Matching refs:parts

80    * Appends the string representation of each of {@code parts}, using the
83 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts)
86 Iterator<?> iterator = parts.iterator();
98 * Appends the string representation of each of {@code parts}, using the
102 A appendable, Object[] parts) throws IOException {
103 return appendTo(appendable, Arrays.asList(parts));
117 * Appends the string representation of each of {@code parts}, using the
122 public final StringBuilder appendTo(StringBuilder builder, Iterable<?> parts)
125 appendTo((Appendable) builder, parts);
133 * Appends the string representation of each of {@code parts}, using the
138 public final StringBuilder appendTo(StringBuilder builder, Object[] parts) {
139 return appendTo(builder, Arrays.asList(parts));
154 * parts}, using the previously configured separator between each.
156 public final String join(Iterable<?> parts) {
157 return appendTo(new StringBuilder(), parts).toString();
162 * parts}, using the previously configured separator between each.
164 public final String join(Object[] parts) {
165 return join(Arrays.asList(parts));
205 A appendable, Iterable<?> parts) throws IOException {
207 checkNotNull(parts, "parts");
208 Iterator<?> iterator = parts.iterator();