Python join() @param @param delimiter @param items @return
(String delimiter, T... items)
| 385 | * @return |
| 386 | */ |
| 387 | @SuppressWarnings("unchecked") |
| 388 | public static <T> String join(String delimiter, T... items) { |
| 389 | return (join(delimiter, Arrays.asList(items))); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Wrap the given string with the control characters to make the text appear bold in the console |
no test coverage detected