Elements. For example, to iterate over all elements in a NodeList:
NodeList nodes = ... for (Element e : Elements.from(nodes)) { ... } Another example, that iterates over all child elements of a given parent: Element parent = ... for (Element e : Elements.under(parent)) { ... }
@author Torgil Zethson
@see TypedNodeList
@since 3.0.0
| |
| |
| |