MCPcopy Index your code
hub / github.com/assertj/assertj / array

Method array

src/main/java/org/assertj/core/util/Arrays.java:61–64  ·  view source on GitHub ↗

Returns an array containing the given arguments. @param the type of the array to return. @param values the values to store in the array. @return an array containing the given arguments.

(T... values)

Source from the content-addressed store, hash-verified

59 * @return an array containing the given arguments.
60 */
61 @SafeVarargs
62 public static <T> T[] array(T... values) {
63 return values;
64 }
65
66 /**
67 * Returns the {@code String} representation of the given array, or {@code null} if the given object is either

Calls

no outgoing calls