Java org.jsoup.nodes TextNode fields, constructors, methods, implement or subclass

Example usage for Java org.jsoup.nodes TextNode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jsoup.nodes TextNode.

The text is from its open source code.

Constructor

TextNode(String text, String baseUri)
Create a new TextNode representing the supplied (unencoded) text).

Method

TextNodecreateFromEncoded(String encodedText, String baseUri)
Create a new TextNode from HTML encoded (aka escaped) data.
StringgetWholeText()
Get the (unencoded) text of this text node, including any newlines and spaces present in the original.
Stringtext()
Get the text content of this text node.
TextNodetext(String text)
Set the text content of this text node.
StringtoString()