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)
| 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 |
no outgoing calls