Returns a joiner which automatically places {@code separator} between consecutive elements.
(String separator)
| 67 | public class Joiner { |
| 68 | /** Returns a joiner which automatically places {@code separator} between consecutive elements. */ |
| 69 | public static Joiner on(String separator) { |
| 70 | return new Joiner(separator); |
| 71 | } |
| 72 | |
| 73 | /** Returns a joiner which automatically places {@code separator} between consecutive elements. */ |
| 74 | public static Joiner on(char separator) { |