Uses of Enum
org.unbescape.javascript.JavaScriptEscapeType
Packages that use JavaScriptEscapeType
-
Uses of JavaScriptEscapeType in org.unbescape.javascript
Subclasses with type arguments of type JavaScriptEscapeType in org.unbescape.javascriptModifier and TypeClassDescriptionenumTypes of escape operations to be performed on JavaScript text:Methods in org.unbescape.javascript that return JavaScriptEscapeTypeModifier and TypeMethodDescriptionstatic JavaScriptEscapeTypeReturns the enum constant of this type with the specified name.static JavaScriptEscapeType[]JavaScriptEscapeType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.javascript with parameters of type JavaScriptEscapeTypeModifier and TypeMethodDescriptionstatic voidJavaScriptEscape.escapeJavaScript(char[] text, int offset, int len, Writer writer, JavaScriptEscapeType type, JavaScriptEscapeLevel level) Perform a (configurable) JavaScript escape operation on a char[] input.static voidJavaScriptEscape.escapeJavaScript(Reader reader, Writer writer, JavaScriptEscapeType type, JavaScriptEscapeLevel level) Perform a (configurable) JavaScript escape operation on a Reader input, writing results to a Writer.static voidJavaScriptEscape.escapeJavaScript(String text, Writer writer, JavaScriptEscapeType type, JavaScriptEscapeLevel level) Perform a (configurable) JavaScript escape operation on a String input, writing results to a Writer.static StringJavaScriptEscape.escapeJavaScript(String text, JavaScriptEscapeType type, JavaScriptEscapeLevel level) Perform a (configurable) JavaScript escape operation on a String input.