Uses of Enum
org.unbescape.css.CssStringEscapeLevel
Packages that use CssStringEscapeLevel
-
Uses of CssStringEscapeLevel in org.unbescape.css
Methods in org.unbescape.css that return CssStringEscapeLevelModifier and TypeMethodDescriptionstatic CssStringEscapeLevel
CssStringEscapeLevel.forLevel
(int level) Utility method for obtaining an enum value from its corresponding int level value.static CssStringEscapeLevel
Returns the enum constant of this type with the specified name.static CssStringEscapeLevel[]
CssStringEscapeLevel.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.css with parameters of type CssStringEscapeLevelModifier and TypeMethodDescription(package private) static void
CssStringEscapeUtil.escape
(char[] text, int offset, int len, Writer writer, CssStringEscapeType escapeType, CssStringEscapeLevel escapeLevel) (package private) static void
CssStringEscapeUtil.escape
(Reader reader, Writer writer, CssStringEscapeType escapeType, CssStringEscapeLevel escapeLevel) (package private) static String
CssStringEscapeUtil.escape
(String text, CssStringEscapeType escapeType, CssStringEscapeLevel escapeLevel) static void
CssEscape.escapeCssString
(char[] text, int offset, int len, Writer writer, CssStringEscapeType type, CssStringEscapeLevel level) Perform a (configurable) CSS String escape operation on a char[] input.static void
CssEscape.escapeCssString
(Reader reader, Writer writer, CssStringEscapeType type, CssStringEscapeLevel level) Perform a (configurable) CSS String escape operation on a Reader input, writing results to a Writer.static void
CssEscape.escapeCssString
(String text, Writer writer, CssStringEscapeType type, CssStringEscapeLevel level) Perform a (configurable) CSS String escape operation on a String input, writing results to a Writer.static String
CssEscape.escapeCssString
(String text, CssStringEscapeType type, CssStringEscapeLevel level) Perform a (configurable) CSS String escape operation on a String input.