Here you can find the source of isEmpty(Collection c)
public static boolean isEmpty(Collection c)
//package com.java2s; import java.util.Collection; public class Main { public static boolean isEmpty(Collection c) { return c == null || c.isEmpty(); }/*from w w w. jav a2s . co m*/ }