Here you can find the source of emptyToNull(List
public static <T> List<T> emptyToNull(List<T> list)
//package com.java2s; import java.util.Collection; import java.util.List; import java.util.Map; public class Main { public static <T> List<T> emptyToNull(List<T> list) { if (isEmpty(list)) { return null; }//from w w w . j ava 2 s .c om return list; } public static <T> boolean isEmpty(T[] vals) { return vals == null || vals.length == 0; } public static <T> boolean isEmpty(T[] vals, boolean checkNullVal) { boolean isEmpty = vals == null || vals.length == 0; if (isEmpty) { return true; } if (checkNullVal) { for (T val : vals) { if (val != null) { return false; } } isEmpty = true; } return isEmpty; } public static boolean isEmpty(Collection<?> col) { return col == null || col.isEmpty(); } public static <T, V> boolean isEmpty(Map<T, V> map) { return map == null || map.isEmpty(); } }