Qizx/db 2.1 API

Uses of Interface
com.qizx.api.Node

Packages that use Node
com.qizx.api API of the embeddable version of the Qizx/db database engine. 
com.qizx.api.util Utility classes implementing interfaces from the API, in particular conversion to XML, HTML, DOM, SAX, conversion from DOM and SAX, and connection to JAXP-compatible XSLT engines. 
 

Uses of Node in com.qizx.api
 

Methods in com.qizx.api that return Node
 Node Document.getDocumentNode()
          Returns the root Node of the document, of type document-node().
 Node Item.getNode()
          Gets the item's Node value.
 Node Node.getParent()
          Returns the parent node.
 Node Node.getFirstChild()
          Returns the first child node of an element or a document node.
 Node Node.getNextSibling()
          Returns the next sibling Node.
 Node Node.getNextNode()
          Returns the next Node in document order.
 Node Node.getDocumentNode()
          Returns the document node if any, else the top-level node.
 Node Node.getAttribute(QName name)
          Gets an attribute of an element by name.
 Node[] Node.getAttributes()
          Gets the attributes of an element.
 

Methods in com.qizx.api with parameters of type Node
 int Node.documentOrderCompareTo(Node that)
          Compares the document order of two nodes.
 int Node.stringValueCompareTo(Node node, Collator collator)
          Compares the string values of two nodes, optionally using a collation.
 boolean Node.deepEquals(Node node, Collator collator)
          Deep equality of two subtrees.
 boolean Node.contains(Node node)
          Returns true if this node is an ancestor of the parameter node or the node itself.
 void XMLPushStream.putNodeCopy(Node node, int copyNamespaceMode)
          Copies a Node to the output flow by traversing it recursively.
 void XMLPushStream.putNamespaces(Node element, int copyNamespaceMode)
          Puts Namespace declarations of the element to the stream according to the specified mode.
 void Indexing.parse(Node specification)
          Parses an Indexing specification from a Node.
 

Uses of Node in com.qizx.api.util
 

Methods in com.qizx.api.util that return Node
static Node PullStreamConverter.buildNode(XMLPullStream in)
          Directly builds an internal Node representation from a XML input stream.
 Node PushNodeBuilder.reap()
          Returns the top-level node built with this object.
static Node DOMToPushStream.convertNode(Node node)
          Utility for conversion of DOM to Data Model nodes
 Node NodeSource.getRootNode()
          Returns the Node used as input by the XSLT transformation.
 

Methods in com.qizx.api.util with parameters of type Node
 void XMLSerializer.output(Node node)
          Serializes a node and its subtree.
 String XMLSerializer.serializeToString(Node node)
          Serializes a node and its subtree as a string.
 Node PushStreamToDOM.exportNode(Node node)
          Converts a node of the XDM into a W3C DOM node.
 

Constructors in com.qizx.api.util with parameters of type Node
NodeXMLReader(Node rootNode)
          Builds a NodeXMLReader with a Node as a source.
NodeSource(Node node)
          Creates a NodeSource from a Node.
 


© 2008 Axyana Software