Uses of Class
com.itextpdf.styledxmlparser.jsoup.nodes.TextNode
-
Packages that use TextNode Package Description com.itextpdf.styledxmlparser.jsoup.nodes com.itextpdf.styledxmlparser.jsoup.select com.itextpdf.styledxmlparser.node.impl.jsoup.node -
-
Uses of TextNode in com.itextpdf.styledxmlparser.jsoup.nodes
Subclasses of TextNode in com.itextpdf.styledxmlparser.jsoup.nodes Modifier and Type Class Description class
CDataNode
A Character Data node, to support CDATA sections.Methods in com.itextpdf.styledxmlparser.jsoup.nodes that return TextNode Modifier and Type Method Description 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.Methods in com.itextpdf.styledxmlparser.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 com.itextpdf.styledxmlparser.jsoup.nodes with parameters of type TextNode Modifier and Type Method Description private static void
Element. appendNormalisedText(java.lang.StringBuilder accum, TextNode textNode)
-
Uses of TextNode in com.itextpdf.styledxmlparser.jsoup.select
Methods in com.itextpdf.styledxmlparser.jsoup.select that return types with arguments of type TextNode Modifier and Type Method Description java.util.List<TextNode>
Elements. textNodes()
GetTextNode
nodes that are direct child nodes of the selected elements. -
Uses of TextNode in com.itextpdf.styledxmlparser.node.impl.jsoup.node
Fields in com.itextpdf.styledxmlparser.node.impl.jsoup.node declared as TextNode Modifier and Type Field Description private TextNode
JsoupTextNode. textNode
The text node.Constructors in com.itextpdf.styledxmlparser.node.impl.jsoup.node with parameters of type TextNode Constructor Description JsoupTextNode(TextNode textNode)
Creates a newJsoupTextNode
instance.
-