Here you can find the source of arrayOf(T... objects)
@SafeVarargs public static <T> T[] arrayOf(T... objects)
//package com.java2s; //License from project: Apache License public class Main { @SafeVarargs public static <T> T[] arrayOf(T... objects) { return objects; }/*w w w. j a va 2 s .c om*/ }