List of utility methods to do List Size Get
null
getSize(null) = 0; getSize({}) = 0; getSize({1}) = 1;
return list == null ? 0 : list.size();