Uses of Class
org.unbescape.html.HtmlEscapeLevel
-
Packages that use HtmlEscapeLevel Package Description org.unbescape.html -
-
Uses of HtmlEscapeLevel in org.unbescape.html
Methods in org.unbescape.html that return HtmlEscapeLevel Modifier and Type Method Description static HtmlEscapeLevel
HtmlEscapeLevel. forLevel(int level)
Utility method for obtaining an enum value from its corresponding int level value.static HtmlEscapeLevel
HtmlEscapeLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static HtmlEscapeLevel[]
HtmlEscapeLevel. 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 HtmlEscapeLevel Modifier and Type Method Description static void
HtmlEscape. escapeHtml(char[] text, int offset, int len, java.io.Writer writer, HtmlEscapeType type, HtmlEscapeLevel level)
Perform a (configurable) HTML escape operation on a char[] input.static void
HtmlEscape. escapeHtml(java.io.Reader reader, java.io.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, java.io.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.
-