MCPcopy Index your code
hub / github.com/jOOQ/jOOQ / join

Method join

jOOQ/src/main/java/org/jooq/tools/StringUtils.java:1072–1075  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 2

refMethod · 0.95
fixJavaPackageNameMethod · 0.95

Calls 2

appendMethod · 0.65
toStringMethod · 0.65

Tested by

no test coverage detected