Package | Description |
---|---|
org.jsoup.nodes |
HTML document structure nodes.
|
org.jsoup.select |
Packages to support the CSS-style element selector.
|
Modifier and Type | Class and Description |
---|---|
class |
CDataNode
A Character Data node, to support CDATA sections.
|
Modifier and Type | Method and Description |
---|---|
TextNode |
TextNode.clone() |
static TextNode |
TextNode.createFromEncoded(java.lang.String encodedText)
Create a new TextNode from HTML encoded (aka escaped) data.
|
TextNode |
TextNode.splitText(int offset)
Split this text node into two nodes at the specified string offset.
|
TextNode |
TextNode.text(java.lang.String text)
Set the text content of this text node.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TextNode> |
Element.textNodes()
Get this element's child text nodes.
|
Modifier and Type | Method and Description |
---|---|
private static void |
Element.appendNormalisedText(java.lang.StringBuilder accum,
TextNode textNode) |
Modifier and Type | Method and Description |
---|---|
java.util.List<TextNode> |
Elements.textNodes()
Get
TextNode nodes that are direct child nodes of the selected elements. |