Uses of Class
org.shredzone.commons.xml.XQuery
-
-
Uses of XQuery in org.shredzone.commons.xml
Methods in org.shredzone.commons.xml that return XQuery Modifier and Type Method Description XQuery
XQuery. get(String xpath)
Gets a single element based on the XPath expression that is applied to the tree represented by thisXQuery
.static XQuery
XQuery. parse(InputStream in)
Parses an XML source and returns anXQuery
object representing the root of the document.static XQuery
XQuery. parse(Reader r)
Parses an XML source and returns anXQuery
object representing the root of the document.static XQuery
XQuery. parse(String xml)
Parses an XML source and returns anXQuery
object representing the root of the document.static XQuery
XQuery. parse(InputSource in)
Parses an XML source and returns anXQuery
object representing the root of the document.XQuery
XQuery. root()
Returns the root node of this node, asXQuery
object.Methods in org.shredzone.commons.xml that return types with arguments of type XQuery Modifier and Type Method Description Optional<XQuery>
XQuery. nextSibling()
Returns the next sibling of this element.Optional<XQuery>
XQuery. parent()
Returns the parent node of this node, asXQuery
object.Optional<XQuery>
XQuery. previousSibling()
Returns the previous sibling of this element.Stream<XQuery>
XQuery. select(String xpath)
Selects elements based on the XPath expression that is applied to the tree represented by thisXQuery
.Stream<XQuery>
XQuery. stream()
Streams all children of this element.
-