Android Utililty Methods Array Length Get

List of utility methods to do Array Length Get

Description

The list of methods to do Array Length Get are organized into topic(s).

Method

intgetLength(Object array)

Returns the length of the specified array.

if (array == null) {
    return 0;
return Array.getLength(array);