Uses of Class
nu.xom.Nodes
-
Packages that use Nodes Package Description nu.xom nu.xomis the core package of XOM that contains all the basic classes representing the different kinds of nodes: elements, attributes, comments, text nodes, and so forth.nu.xom.canonical nu.xom.canonicalsupports the output of Canonical XML from XOM.nu.xom.converters nu.xom.converterscontains classes that convert XOM documents to other models such as SAX and DOM.nu.xom.xslt nu.xom.xsltconnects XOM documents to TrAX-based XSLT processors. -
-
Uses of Nodes in nu.xom
Methods in nu.xom that return Nodes Modifier and Type Method Description NodesNodeFactory. finishMakingElement(Element element)Signals the end of an element.NodesNodeFactory. makeAttribute(java.lang.String name, java.lang.String URI, java.lang.String value, Attribute.Type type)Returns a newNodesobject containing an attribute in the specified namespace with the specified name and type.NodesNodeFactory. makeComment(java.lang.String data)Returns a newNodesobject containing a comment with the specified text.NodesNodeFactory. makeDocType(java.lang.String rootElementName, java.lang.String publicID, java.lang.String systemID)Returns a newNodesobject containing aDocTypeobject with the specified root element name, system ID, and public ID.NodesNodeFactory. makeProcessingInstruction(java.lang.String target, java.lang.String data)Returns a newNodesobject containing a newProcessingInstructionobject with the specified target and data.NodesNodeFactory. makeText(java.lang.String data)Returns a newNodesobject containing a text node with the specified content.NodesNode. query(java.lang.String xpath)Returns the nodes selected by the XPath expression in the context of this node in document order as defined by XSLT.NodesNode. query(java.lang.String xpath, XPathContext namespaces)Returns the nodes selected by the XPath expression in the context of this node in document order as defined in XSLT.NodesElement. removeChildren()Detaches all children from this node. -
Uses of Nodes in nu.xom.canonical
Methods in nu.xom.canonical with parameters of type Nodes Modifier and Type Method Description voidCanonicalizer. write(Nodes documentSubset)Serializes a document subset onto the output stream using the canonical XML algorithm. -
Uses of Nodes in nu.xom.converters
Methods in nu.xom.converters that return Nodes Modifier and Type Method Description static NodesDOMConverter. convert(org.w3c.dom.DocumentFragment fragment)Translates a DOMorg.w3c.dom.DocumentFragmentobject into an equivalentnu.xom.Nodesobject.static NodesDOMConverter. convert(org.w3c.dom.DocumentFragment fragment, NodeFactory factory)Translates a DOMorg.w3c.dom.DocumentFragmentobject into an equivalentnu.xom.Nodesobject, converting each DOM node as specified by a factory.Methods in nu.xom.converters with parameters of type Nodes Modifier and Type Method Description voidSAXConverter. convert(Nodes nodes)Converts aNodeslist into SAX by firing events into the registered handlers. -
Uses of Nodes in nu.xom.xslt
Methods in nu.xom.xslt that return Nodes Modifier and Type Method Description NodesXSLTransform. transform(Document in)Creates a newNodesfrom the inputDocumentby applying this object's stylesheet.NodesXSLTransform. transform(Nodes in)Creates a newNodesobject from the inputNodesobject by applying this object's stylesheet.Methods in nu.xom.xslt with parameters of type Nodes Modifier and Type Method Description static DocumentXSLTransform. toDocument(Nodes nodes)Builds aDocumentobject from aNodesobject.NodesXSLTransform. transform(Nodes in)Creates a newNodesobject from the inputNodesobject by applying this object's stylesheet.
-