Uses of Enum Class
org.unbescape.html.HtmlEscapeType
Packages that use HtmlEscapeType
-
Uses of HtmlEscapeType in org.unbescape.html
Methods in org.unbescape.html that return HtmlEscapeTypeModifier and TypeMethodDescriptionstatic HtmlEscapeType
Returns the enum constant of this class with the specified name.static HtmlEscapeType[]
HtmlEscapeType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.unbescape.html with parameters of type HtmlEscapeTypeModifier and TypeMethodDescriptionstatic void
HtmlEscape.escapeHtml
(char[] text, int offset, int len, Writer writer, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a char[] input.static void
HtmlEscape.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 void
HtmlEscape.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 String
HtmlEscape.escapeHtml
(String text, HtmlEscapeType type, HtmlEscapeLevel level) Perform a (configurable) HTML escape operation on a String input.