XmlTool |
XmlTool.children() |
Returns a new XmlTool instance that wraps all the
child Elements of all the current internally held nodes
that are Elements themselves.
|
XmlTool |
XmlTool.fetch(java.lang.String url) |
Reads and parses a remote or local URL
|
XmlTool |
XmlTool.find(java.lang.Object o) |
Converts the specified object to a String and calls
find(String) with that.
|
XmlTool |
XmlTool.find(java.lang.String xpath) |
Performs an XPath selection on the current set of
Nodes held by this instance and returns a new
XmlTool instance that wraps those results.
|
XmlTool |
XmlTool.get(java.lang.Number n) |
Returns an XmlTool that wraps the specified
Node from this instance's internal Node list.
|
XmlTool |
XmlTool.getFirst() |
Returns an XmlTool that wraps only the
first Node from this instance's internal Node list.
|
XmlTool |
XmlTool.getLast() |
Returns an XmlTool that wraps only the
last Node from this instance's internal Node list.
|
XmlTool |
XmlTool.getParent() |
Returns a new XmlTool instance that wraps
the parent Element of the first/sole Node
being wrapped by this instance.
|
XmlTool |
XmlTool.NodeIterator.next() |
|
XmlTool |
XmlTool.parents() |
Returns a new XmlTool instance that wraps
the parent Elements of each of the Nodes
being wrapped by this instance.
|
XmlTool |
XmlTool.parse(java.lang.String xml) |
Parses the given XML string and uses the resulting Document
as the root Node.
|
XmlTool |
XmlTool.read(java.lang.String resource) |
Reads and parses a local resource file
|