Uses of Class
org.jsoup.nodes.Document.OutputSettings
Packages that use Document.OutputSettings
Package
Description
Contains the main
Jsoup class, which provides convenient static access to the jsoup functionality.HTML document structure nodes.
-
Uses of Document.OutputSettings in org.jsoup
Methods in org.jsoup with parameters of type Document.OutputSettings -
Uses of Document.OutputSettings in org.jsoup.nodes
Fields in org.jsoup.nodes declared as Document.OutputSettingsModifier and TypeFieldDescriptionprivate static Document.OutputSettingsEntities.DefaultOutputprivate final Document.OutputSettingsNode.OuterHtmlVisitor.outprivate Document.OutputSettingsDocument.outputSettingsMethods in org.jsoup.nodes that return Document.OutputSettingsModifier and TypeMethodDescriptionUpdate the document's output charset.Update the document's output charset.Document.OutputSettings.clone()Document.OutputSettings.escapeMode(Entities.EscapeMode escapeMode) Set the document's escape mode, which determines how characters are escaped when the output character set does not support a given character:- using either a named or a numbered escape.Document.OutputSettings.indentAmount(int indentAmount) Set the indent amount for pretty printingDocument.OutputSettings.maxPaddingWidth(int maxPaddingWidth) Set the max padding amount for pretty printing so very deeply nested nodes don't get insane padding amounts.Document.OutputSettings.outline(boolean outlineMode) Enable or disable HTML outline mode.Document.outputSettings()Get the document's current output settings.(package private) static Document.OutputSettingsNodeUtils.outputSettings(Node node) Get the output setting for this node, or if this node has no document (or parent), retrieve the default output settingsDocument.OutputSettings.prettyPrint(boolean pretty) Enable or disable pretty printing.Document.OutputSettings.syntax(Document.OutputSettings.Syntax syntax) Set the document's output syntax.Methods in org.jsoup.nodes with parameters of type Document.OutputSettingsModifier and TypeMethodDescription(package private) static voidEntities.escape(Appendable accum, String string, Document.OutputSettings out, boolean inAttribute, boolean normaliseWhite, boolean stripLeadingWhite, boolean trimTrailing) static StringEntities.escape(String string, Document.OutputSettings out) HTML escape an input string.private voidXmlDeclaration.getWholeDeclaration(Appendable accum, Document.OutputSettings out) protected voidAttribute.html(Appendable accum, Document.OutputSettings out) protected static voidAttribute.html(String key, String val, Appendable accum, Document.OutputSettings out) (package private) final voidAttributes.html(Appendable accum, Document.OutputSettings out) (package private) static voidAttribute.htmlNoValidate(String key, String val, Appendable accum, Document.OutputSettings out) protected voidNode.indent(Appendable accum, int depth, Document.OutputSettings out) private booleanElement.isFormatAsBlock(Document.OutputSettings out) private booleanElement.isInlineable(Document.OutputSettings out) (package private) voidCDataNode.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidComment.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidDataNode.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidDocumentType.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidElement.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) abstract voidNode.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) Get the outer HTML of this node.(package private) voidPseudoTextElement.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidTextNode.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidXmlDeclaration.outerHtmlHead(Appendable accum, int depth, Document.OutputSettings out) (package private) voidCDataNode.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidComment.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidDataNode.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidDocumentType.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidElement.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) abstract voidNode.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidPseudoTextElement.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidTextNode.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) (package private) voidXmlDeclaration.outerHtmlTail(Appendable accum, int depth, Document.OutputSettings out) Document.outputSettings(Document.OutputSettings outputSettings) Set the document's output settings.protected static booleanAttribute.shouldCollapseAttribute(String key, String val, Document.OutputSettings out) protected final booleanAttribute.shouldCollapseAttribute(Document.OutputSettings out) Collapsible if it's a boolean attribute and value is empty or same as name(package private) booleanElement.shouldIndent(Document.OutputSettings out) Constructors in org.jsoup.nodes with parameters of type Document.OutputSettingsModifierConstructorDescription(package private)OuterHtmlVisitor(Appendable accum, Document.OutputSettings out)