Java Utililty Methods List Null Empty

List of utility methods to do List Null Empty

Description

The list of methods to do List Null Empty are organized into topic(s).

Method

ListnullToEmpty(List nullable)
null To Empty
return nullable == null ? Collections.<T>emptyList() : nullable;