Joins the elements of the provided array into a single String containing the provided list of elements. No separator is added to the joined String. Null objects or empty strings within the array are represented by empty strings. StringUtils.join(null) = null StringUt
(T... elements)
| 1070 | * @since 3.0 Changed signature to use varargs |
| 1071 | */ |
| 1072 | @SafeVarargs |
| 1073 | public static <T> String join(T... elements) { |
| 1074 | return join(elements, null); |
| 1075 | } |
| 1076 | |
| 1077 | /** |
| 1078 | * <p>Joins the elements of the provided array into a single String |
no test coverage detected