Uses of Class
org.jsoup.nodes.TextNode
-
Packages that use TextNode Package Description org.jsoup.nodes HTML document structure nodes. -
-
Uses of TextNode in org.jsoup.nodes
Subclasses of TextNode in org.jsoup.nodes Modifier and Type Class Description classCDataNodeA Character Data node, to support CDATA sections.Methods in org.jsoup.nodes that return TextNode Modifier and Type Method Description static TextNodeTextNode. createFromEncoded(java.lang.String encodedText)Create a new TextNode from HTML encoded (aka escaped) data.static TextNodeTextNode. createFromEncoded(java.lang.String encodedText, java.lang.String baseUri)Deprecated.usecreateFromEncoded(String)instead, as LeafNodes don't carry base URIs.TextNodeTextNode. splitText(int offset)Split this text node into two nodes at the specified string offset.TextNodeTextNode. text(java.lang.String text)Set the text content of this text node.Methods in org.jsoup.nodes that return types with arguments of type TextNode Modifier and Type Method Description java.util.List<TextNode>Element. textNodes()Get this element's child text nodes.Methods in org.jsoup.nodes with parameters of type TextNode Modifier and Type Method Description private static voidElement. appendNormalisedText(java.lang.StringBuilder accum, TextNode textNode)
-