Uses of Enum Class
org.unbescape.css.CssStringEscapeType
Packages that use CssStringEscapeType
-
Uses of CssStringEscapeType in org.unbescape.css
Methods in org.unbescape.css that return CssStringEscapeTypeModifier and TypeMethodDescriptionstatic CssStringEscapeTypeReturns the enum constant of this class with the specified name.static CssStringEscapeType[]CssStringEscapeType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.unbescape.css with parameters of type CssStringEscapeTypeModifier and TypeMethodDescriptionstatic voidCssEscape.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 voidCssEscape.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 voidCssEscape.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 StringCssEscape.escapeCssString(String text, CssStringEscapeType type, CssStringEscapeLevel level) Perform a (configurable) CSS String escape operation on a String input.