Uses of Class
org.jsoup.parser.TreeBuilder
-
Packages that use TreeBuilder Package Description org.jsoup.parser Contains the HTML parser, tag specifications, and HTML tokeniser. -
-
Uses of TreeBuilder in org.jsoup.parser
Subclasses of TreeBuilder in org.jsoup.parser Modifier and Type Class Description class
HtmlTreeBuilder
HTML Tree Builder; creates a DOM from Tokens.class
XmlTreeBuilder
Use theXmlTreeBuilder
when you want to parse XML without any of the HTML DOM rules being applied to the document.Fields in org.jsoup.parser declared as TreeBuilder Modifier and Type Field Description private TreeBuilder
Parser. treeBuilder
Methods in org.jsoup.parser that return TreeBuilder Modifier and Type Method Description TreeBuilder
Parser. getTreeBuilder()
Get the TreeBuilder currently in use.Methods in org.jsoup.parser with parameters of type TreeBuilder Modifier and Type Method Description Parser
Parser. setTreeBuilder(TreeBuilder treeBuilder)
Update the TreeBuilder used when parsing content.Constructors in org.jsoup.parser with parameters of type TreeBuilder Constructor Description Parser(TreeBuilder treeBuilder)
Create a new Parser, using the specified TreeBuilder
-