Android Utililty Methods Collection Size Get

List of utility methods to do Collection Size Get

Description

The list of methods to do Collection Size Get are organized into topic(s).

Method

intsize(Collection collection)
Get the size of specified collection.
if (collection == null) {
    return 0;
return collection.size();