Package | Description |
---|---|
org.jsoup.nodes |
HTML document structure nodes.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CDataNode |
A Character Data node, to support CDATA sections.
|
Modifier and Type | Method | Description |
---|---|---|
static TextNode |
TextNode.createFromEncoded(String encodedText) |
Create a new TextNode from HTML encoded (aka escaped) data.
|
static TextNode |
TextNode.createFromEncoded(String encodedText,
String baseUri) |
Deprecated.
use
createFromEncoded(String) instead, as LeafNodes don't carry base URIs. |
TextNode |
TextNode.splitText(int offset) |
Split this text node into two nodes at the specified string offset.
|
TextNode |
TextNode.text(String text) |
Set the text content of this text node.
|
Modifier and Type | Method | Description |
---|---|---|
List<TextNode> |
Element.textNodes() |
Get this element's child text nodes.
|
Copyright © 2009–2018 Jonathan Hedley. All rights reserved.