Android Utililty Methods Map Empty Check

List of utility methods to do Map Empty Check

Description

The list of methods to do Map Empty Check are organized into topic(s).

Method

booleanisEmpty(Map map)
Return true if the supplied Map is null or empty.
return (map == null || map.isEmpty());
booleanisEmptyMap(Map map)
is Empty Map
return map == null || isEmpty(map.keySet());