Uses of Enum
org.unbescape.css.CssStringEscapeType
Packages that use CssStringEscapeType
-
Uses of CssStringEscapeType in org.unbescape.css
Subclasses with type arguments of type CssStringEscapeType in org.unbescape.cssModifier and TypeClassDescriptionenumTypes of escape operations to be performed on CSS strings:Methods in org.unbescape.css that return CssStringEscapeTypeModifier and TypeMethodDescriptionstatic CssStringEscapeTypeReturns the enum constant of this type with the specified name.static CssStringEscapeType[]CssStringEscapeType.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 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.