Uses of Enum
org.unbescape.html.HtmlEscapeType
Packages that use HtmlEscapeType
-
Uses of HtmlEscapeType in org.unbescape.html
Subclasses with type arguments of type HtmlEscapeType in org.unbescape.htmlModifier and TypeClassDescriptionenumTypes of escape operations to be performed on HTML text:Methods in org.unbescape.html that return HtmlEscapeTypeModifier and TypeMethodDescriptionstatic HtmlEscapeTypeReturns the enum constant of this type with the specified name.static HtmlEscapeType[]HtmlEscapeType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.html with parameters of type HtmlEscapeTypeModifier and TypeMethodDescriptionstatic voidHtmlEscape.escapeHtml(char[] text, int offset, int len, Writer writer, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a char[] input.static voidHtmlEscape.escapeHtml(Reader reader, Writer writer, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a Reader input, writing results to a Writer.static voidHtmlEscape.escapeHtml(String text, Writer writer, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a String input, writing results to a Writer.static StringHtmlEscape.escapeHtml(String text, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a String input.