Uses of Enum Class
org.unbescape.json.JsonEscapeType
Packages that use JsonEscapeType
-
Uses of JsonEscapeType in org.unbescape.json
Methods in org.unbescape.json that return JsonEscapeTypeModifier and TypeMethodDescriptionstatic JsonEscapeType
Returns the enum constant of this class with the specified name.static JsonEscapeType[]
JsonEscapeType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.unbescape.json with parameters of type JsonEscapeTypeModifier and TypeMethodDescriptionstatic void
JsonEscape.escapeJson
(char[] text, int offset, int len, Writer writer, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a char[] input.static void
JsonEscape.escapeJson
(Reader reader, Writer writer, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a Reader input, writing results to a Writer.static void
JsonEscape.escapeJson
(String text, Writer writer, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a String input, writing results to a Writer.static String
JsonEscape.escapeJson
(String text, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a String input.