Here you can find the source of clone(T[] array)
public static <T> T[] clone(T[] array)
//package com.java2s; //License from project: Apache License public class Main { public static <T> T[] clone(T[] array) { if (array == null) { return null; }/*from w ww . java 2s. co m*/ return array.clone(); } }