Uses of Class
com.itextpdf.styledxmlparser.jsoup.nodes.Document
-
-
Uses of Document in com.itextpdf.styledxmlparser.jsoup
Methods in com.itextpdf.styledxmlparser.jsoup that return Document Modifier and Type Method Description static Document
Jsoup. parse(java.io.File in, java.lang.String charsetName)
Parse the contents of a file as HTML.static Document
Jsoup. parse(java.io.File in, java.lang.String charsetName, java.lang.String baseUri)
Parse the contents of a file as HTML.static Document
Jsoup. parse(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri)
Read an input stream, and parse it to a Document.static Document
Jsoup. parse(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri, Parser parser)
Read an input stream, and parse it to a Document.static Document
Jsoup. parse(java.lang.String html)
Parse HTML into a Document.static Document
Jsoup. parse(java.lang.String html, java.lang.String baseUri)
Parse HTML into a Document.static Document
Jsoup. parse(java.lang.String html, java.lang.String baseUri, Parser parser)
Parse HTML into a Document, using the provided Parser.static Document
Jsoup. parseBodyFragment(java.lang.String bodyHtml)
Parse a fragment of HTML, with the assumption that it forms thebody
of the HTML.static Document
Jsoup. parseBodyFragment(java.lang.String bodyHtml, java.lang.String baseUri)
Parse a fragment of HTML, with the assumption that it forms thebody
of the HTML. -
Uses of Document in com.itextpdf.styledxmlparser.jsoup.helper
Methods in com.itextpdf.styledxmlparser.jsoup.helper that return Document Modifier and Type Method Description static Document
DataUtil. load(java.io.File in, java.lang.String charsetName, java.lang.String baseUri)
Loads and parses a file to a Document.static Document
DataUtil. load(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri)
Parses a Document from an input steam.static Document
DataUtil. load(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri, Parser parser)
Parses a Document from an input steam, using the provided Parser.(package private) static Document
DataUtil. parseInputStream(java.io.InputStream input, java.lang.String charsetName, java.lang.String baseUri, Parser parser)
-
Uses of Document in com.itextpdf.styledxmlparser.jsoup.nodes
Methods in com.itextpdf.styledxmlparser.jsoup.nodes that return Document Modifier and Type Method Description static Document
Document. createShell(java.lang.String baseUri)
Create a valid, empty shell of a document, suitable for adding more elements to.Document
Document. normalise()
Normalise the document.Document
Document. outputSettings(Document.OutputSettings outputSettings)
Set the document's output settings.Document
Node. ownerDocument()
Gets the Document associated with this Node.Document
Document. parser(Parser parser)
Set the parser used to create this document.Document
Document. quirksMode(Document.QuirksMode quirksMode)
-
Uses of Document in com.itextpdf.styledxmlparser.jsoup.parser
Fields in com.itextpdf.styledxmlparser.jsoup.parser declared as Document Modifier and Type Field Description protected Document
TreeBuilder. doc
Methods in com.itextpdf.styledxmlparser.jsoup.parser that return Document Modifier and Type Method Description (package private) Document
HtmlTreeBuilder. getDocument()
static Document
Parser. parse(java.lang.String html, java.lang.String baseUri)
Parse HTML into a Document.(package private) Document
TreeBuilder. parse(java.io.Reader input, java.lang.String baseUri, Parser parser)
(package private) Document
XmlTreeBuilder. parse(java.io.Reader input, java.lang.String baseUri)
(package private) Document
XmlTreeBuilder. parse(java.lang.String input, java.lang.String baseUri)
static Document
Parser. parseBodyFragment(java.lang.String bodyHtml, java.lang.String baseUri)
Parse a fragment of HTML into thebody
of a Document.Document
Parser. parseInput(java.io.Reader inputHtml, java.lang.String baseUri)
Document
Parser. parseInput(java.lang.String html, java.lang.String baseUri)
-
Uses of Document in com.itextpdf.styledxmlparser.jsoup.safety
Methods in com.itextpdf.styledxmlparser.jsoup.safety that return Document Modifier and Type Method Description Document
Cleaner. clean(Document dirtyDocument)
Creates a new, clean document, from the original dirty document, containing only elements allowed by the safelist.Methods in com.itextpdf.styledxmlparser.jsoup.safety with parameters of type Document Modifier and Type Method Description Document
Cleaner. clean(Document dirtyDocument)
Creates a new, clean document, from the original dirty document, containing only elements allowed by the safelist.boolean
Cleaner. isValid(Document dirtyDocument)
Determines if the input document bodyis valid, against the safelist. -
Uses of Document in com.itextpdf.styledxmlparser.node.impl.jsoup.node
Fields in com.itextpdf.styledxmlparser.node.impl.jsoup.node declared as Document Modifier and Type Field Description private Document
JsoupDocumentNode. document
The JSoup document instance.Methods in com.itextpdf.styledxmlparser.node.impl.jsoup.node that return Document Modifier and Type Method Description Document
JsoupDocumentNode. getDocument()
Gets the JSoup document.Constructors in com.itextpdf.styledxmlparser.node.impl.jsoup.node with parameters of type Document Constructor Description JsoupDocumentNode(Document document)
Creates a newJsoupDocumentNode
instance.
-