Android Utililty Methods XML NodeList Length Check

List of utility methods to do XML NodeList Length Check

Description

The list of methods to do XML NodeList Length Check are organized into topic(s).

Method

intnodeLength(NodeList list)
Returns the length of the specified node list.
return list == null ? 0 : list.getLength();