- nextNode() - Method in class com.jaunt.Node
-
Returns the next node, or null if none exists.
- nextNodeSibling() - Method in class com.jaunt.Node
-
Return the next sibling Node (ie, the next Node that has the same parent) or null if none exists.
- nextNonDescendantNode() - Method in class com.jaunt.Node
-
Return the next non-descendant Node (which may or may not be a sibling node) or returns null if none exists.
- nextPageLink(Element) - Method in class com.jaunt.Document
-
returns the next hyperlink in a series of numeric links within the specified container, such as links that represent pages of search results; throws exceptions if no sequences or multiple (non-equivalent) sequences were found.
- nextPageLink() - Method in class com.jaunt.Document
-
returns the next hyperlink in a series of numeric links within the document, such as links that represent pages of search results; throws exceptions if no sequences or multiple (non-equivalent) sequences were found.
- nextPageLinkExists() - Method in class com.jaunt.Document
-
returns true if another hyperlink exists in a series of numeric links within the document, such as links that represent pages of search results
- nextPageLinkExists(Element) - Method in class com.jaunt.Document
-
returns true if another hyperlink exists in a series of numeric links within the specified container, such as links that represent pages of search results
- nextSiblingElement() - Method in class com.jaunt.Element
-
Retrieves the next sibling Element in the DOM (ie, the next Element that shares the same parent); note that this method is not suitable for iterating through the children of an Elements container, since the those elements may not be siblings in the dom tree.
- Node - Class in com.jaunt
-
Represents a Node in the DOM.
- NotFound - Exception in com.jaunt
-
Represents an error caused by an inability to locate the target of a search.
- NotFound(String) - Constructor for exception com.jaunt.NotFound
-
Creates a new Exception with the specified error message.