Package | Description |
---|---|
org.jsoup.examples |
Contains example programs and use of jsoup.
|
org.jsoup.helper |
Package containing classes supporting the core jsoup code.
|
org.jsoup.nodes |
HTML document structure nodes.
|
org.jsoup.safety |
Contains the jsoup HTML cleaner, and safelist definitions.
|
org.jsoup.select |
Packages to support the CSS-style element selector.
|
Modifier and Type | Class and Description |
---|---|
private static class |
HtmlToPlainText.FormattingVisitor |
Modifier and Type | Class and Description |
---|---|
protected static class |
W3CDom.W3CBuilder
Implements the conversion by walking the input.
|
Modifier and Type | Class and Description |
---|---|
private static class |
Node.OuterHtmlVisitor |
Modifier and Type | Method and Description |
---|---|
Element |
Element.traverse(NodeVisitor nodeVisitor) |
Node |
Node.traverse(NodeVisitor nodeVisitor)
Perform a depth-first traversal through this node and its descendants.
|
Modifier and Type | Class and Description |
---|---|
private class |
Cleaner.CleaningVisitor
Iterates the input and copies trusted nodes (tags, attributes, text) into the destination.
|
Modifier and Type | Method and Description |
---|---|
Elements |
Elements.traverse(NodeVisitor nodeVisitor)
Perform a depth-first traversal on each of the selected elements.
|
static void |
NodeTraversor.traverse(NodeVisitor visitor,
Elements elements)
Start a depth-first traverse of all elements.
|
static void |
NodeTraversor.traverse(NodeVisitor visitor,
Node root)
Start a depth-first traverse of the root and all of its descendants.
|