Returns a string containing the string representation of each of parts, using the previously configured separator between each.
(Iterable<?> parts)
| 198 | |
| 199 | |
| 200 | public final String join(Iterable<?> parts) { |
| 201 | return join(parts.iterator()); |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Returns a string containing the string representation of each of {@code parts}, using the |