Uses of Class
nu.xom.Nodes
Packages that use Nodes
Package
Description
nu.xom
is 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
supports the output of
Canonical XML
from XOM.nu.xom.converters
contains
classes that convert XOM documents to other
models such as SAX and DOM.nu.xom.xslt
connects
XOM documents to TrAX-based XSLT processors.-
Uses of Nodes in nu.xom
Modifier and TypeMethodDescriptionNodeFactory.finishMakingElement
(Element element) Signals the end of an element.NodeFactory.makeAttribute
(String name, String URI, String value, Attribute.Type type) Returns a newNodes
object containing an attribute in the specified namespace with the specified name and type.NodeFactory.makeComment
(String data) Returns a newNodes
object containing a comment with the specified text.NodeFactory.makeDocType
(String rootElementName, String publicID, String systemID) Returns a newNodes
object containing aDocType
object with the specified root element name, system ID, and public ID.NodeFactory.makeProcessingInstruction
(String target, String data) Returns a newNodes
object containing a newProcessingInstruction
object with the specified target and data.Returns a newNodes
object containing a text node with the specified content.final Nodes
Returns the nodes selected by the XPath expression in the context of this node in document order as defined by XSLT.final Nodes
Node.query
(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.Element.removeChildren()
Detaches all children from this node. -
Uses of Nodes in nu.xom.canonical
Methods in nu.xom.canonical with parameters of type Nodes -
Uses of Nodes in nu.xom.converters
Methods in nu.xom.converters that return NodesModifier and TypeMethodDescriptionstatic Nodes
DOMConverter.convert
(DocumentFragment fragment) Translates a DOMorg.w3c.dom.DocumentFragment
object into an equivalentnu.xom.Nodes
object.static Nodes
DOMConverter.convert
(DocumentFragment fragment, NodeFactory factory) Translates a DOMorg.w3c.dom.DocumentFragment
object into an equivalentnu.xom.Nodes
object, converting each DOM node as specified by a factory.Methods in nu.xom.converters with parameters of type Nodes -
Uses of Nodes in nu.xom.xslt
Methods in nu.xom.xslt that return NodesModifier and TypeMethodDescriptionCreates a newNodes
from the inputDocument
by applying this object's stylesheet.Creates a newNodes
object from the inputNodes
object by applying this object's stylesheet.Methods in nu.xom.xslt with parameters of type Nodes