Android Utililty Methods XML NodeList Length Check
List of utility methods to do XML NodeList Length Check
HOME
Android
X
XML NodeList Length Check
Description
The list of methods to do XML NodeList Length Check are organized into topic(s).
Method
int
nodeLength(NodeList list)
Returns the length of the specified node list.
return
list == null ? 0 : list.getLength();