Here you can find the source of removeFirstElementFromArray(T[] array)
public static <T> T[] removeFirstElementFromArray(T[] array)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; public class Main { public static <T> T[] removeFirstElementFromArray(T[] array) { return Arrays.copyOfRange(array, 1, array.length); }/*from w w w .j a v a 2 s . c o m*/ }