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 XQueryXQuery. get(String xpath)Gets a single element based on the XPath expression that is applied to the tree represented by thisXQuery.static XQueryXQuery. parse(InputStream in)Parses an XML source and returns anXQueryobject representing the root of the document.static XQueryXQuery. parse(Reader r)Parses an XML source and returns anXQueryobject representing the root of the document.static XQueryXQuery. parse(String xml)Parses an XML source and returns anXQueryobject representing the root of the document.static XQueryXQuery. parse(InputSource in)Parses an XML source and returns anXQueryobject representing the root of the document.XQueryXQuery. root()Returns the root node of this node, asXQueryobject.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, asXQueryobject.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.
-