Here you can find the source of print(List
public static <T> void print(List<T> list)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { public static <T> void print(List<T> list) { System.out.println("List: ["); for (T t : list) { System.out.println(t); }//from ww w . j av a 2 s .c o m System.out.println("]"); } }