Here you can find the source of toString(final List
public static <E> String toString(final List<E> list)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static <E> String toString(final List<E> list) { return toString(list, "\t"); }//from ww w . ja v a 2 s.c o m public static <E> String toString(final List<E> list, String separator) { StringBuilder sb = new StringBuilder(); if (list != null && list.size() > 0) { for (int i = 0; i < list.size() - 1; i++) { if (list.get(i) != null) { sb.append(list.get(i).toString()).append(separator); } else { sb.append("null").append(separator); } } if (list.get(list.size() - 1) != null) { sb.append(list.get(list.size() - 1).toString()); } else { sb.append("null"); } } return sb.toString(); } }