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 DocumentJsoup. parse(java.io.File in, java.lang.String charsetName)Parse the contents of a file as HTML.static DocumentJsoup. parse(java.io.File in, java.lang.String charsetName, java.lang.String baseUri)Parse the contents of a file as HTML.static DocumentJsoup. parse(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri)Read an input stream, and parse it to a Document.static DocumentJsoup. 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 DocumentJsoup. parse(java.lang.String html)Parse HTML into a Document.static DocumentJsoup. parse(java.lang.String html, java.lang.String baseUri)Parse HTML into a Document.static DocumentJsoup. parse(java.lang.String html, java.lang.String baseUri, Parser parser)Parse HTML into a Document, using the provided Parser.static DocumentJsoup. parseBodyFragment(java.lang.String bodyHtml)Parse a fragment of HTML, with the assumption that it forms thebodyof the HTML.static DocumentJsoup. parseBodyFragment(java.lang.String bodyHtml, java.lang.String baseUri)Parse a fragment of HTML, with the assumption that it forms thebodyof 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 DocumentDataUtil. load(java.io.File in, java.lang.String charsetName, java.lang.String baseUri)Loads and parses a file to a Document.static DocumentDataUtil. load(java.io.InputStream in, java.lang.String charsetName, java.lang.String baseUri)Parses a Document from an input steam.static DocumentDataUtil. 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 DocumentDataUtil. 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 DocumentDocument. createShell(java.lang.String baseUri)Create a valid, empty shell of a document, suitable for adding more elements to.DocumentDocument. normalise()Normalise the document.DocumentDocument. outputSettings(Document.OutputSettings outputSettings)Set the document's output settings.DocumentNode. ownerDocument()Gets the Document associated with this Node.DocumentDocument. parser(Parser parser)Set the parser used to create this document.DocumentDocument. 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 DocumentTreeBuilder. docMethods in com.itextpdf.styledxmlparser.jsoup.parser that return Document Modifier and Type Method Description (package private) DocumentHtmlTreeBuilder. getDocument()static DocumentParser. parse(java.lang.String html, java.lang.String baseUri)Parse HTML into a Document.(package private) DocumentTreeBuilder. parse(java.io.Reader input, java.lang.String baseUri, Parser parser)(package private) DocumentXmlTreeBuilder. parse(java.io.Reader input, java.lang.String baseUri)(package private) DocumentXmlTreeBuilder. parse(java.lang.String input, java.lang.String baseUri)static DocumentParser. parseBodyFragment(java.lang.String bodyHtml, java.lang.String baseUri)Parse a fragment of HTML into thebodyof a Document.DocumentParser. parseInput(java.io.Reader inputHtml, java.lang.String baseUri)DocumentParser. 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 DocumentCleaner. 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 DocumentCleaner. clean(Document dirtyDocument)Creates a new, clean document, from the original dirty document, containing only elements allowed by the safelist.booleanCleaner. 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 DocumentJsoupDocumentNode. documentThe JSoup document instance.Methods in com.itextpdf.styledxmlparser.node.impl.jsoup.node that return Document Modifier and Type Method Description DocumentJsoupDocumentNode. 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 newJsoupDocumentNodeinstance.
-