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