Uses of Enum Class
org.unbescape.html.HtmlEscapeLevel
Packages that use HtmlEscapeLevel
-
Uses of HtmlEscapeLevel in org.unbescape.html
Methods in org.unbescape.html that return HtmlEscapeLevelModifier and TypeMethodDescriptionstatic HtmlEscapeLevelHtmlEscapeLevel.forLevel(int level) Utility method for obtaining an enum value from its corresponding int level value.static HtmlEscapeLevelReturns the enum constant of this class with the specified name.static HtmlEscapeLevel[]HtmlEscapeLevel.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 HtmlEscapeLevelModifier 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.