Uses of Class
org.jsoup.nodes.Node

Packages that use Node
org.jsoup.nodes HTML document structure nodes. 
 

Uses of Node in org.jsoup.nodes
 

Subclasses of Node in org.jsoup.nodes
 class Comment
          A comment node.
 class DataNode
          A data node, for contents of style, script tags etc, where contents should not show in text().
 class Document
          A HTML Document.
 class Element
          A HTML element consists of a tag name, attributes, and child nodes (including text nodes and other elements).
 class TextNode
          A text node.
 class XmlDeclaration
          An XML Declaration.
 

Methods in org.jsoup.nodes with type parameters of type Node
protected static
<N extends Node>
Integer
Node.indexInList(N search, List<N> nodes)
           
 

Methods in org.jsoup.nodes that return Node
 Node Node.attr(String attributeKey, String attributeValue)
          Set an attribute (key=value).
 Node Node.childNode(int index)
          Get a child node by index
 Node Node.nextSibling()
          Get this node's next sibling.
 Node Node.parent()
          Gets this node's parent node.
 Node Node.previousSibling()
          Get this node's previous sibling.
 Node Node.removeAttr(String attributeKey)
          Remove an attribute from this element.
 

Methods in org.jsoup.nodes that return types with arguments of type Node
 List<Node> Node.childNodes()
          Get this node's children.
 List<Node> Node.siblingNodes()
          Retrieves this node's sibling nodes.
 

Methods in org.jsoup.nodes with parameters of type Node
protected  void Node.addChild(Node in)
           
 Element Element.appendChild(Node child)
          Add a node to the last child of this element.
 Element Element.prependChild(Node child)
          Add a node to the start of this element's children.
protected  void Node.removeChild(Node out)
           
protected  void Node.replaceChild(Node out, Node in)
           
protected  void Node.setParentNode(Node parentNode)
           
 



Copyright © 2009-2010 Jonathan Hedley. All Rights Reserved.