Uses of Enum
org.unbescape.json.JsonEscapeType
Packages that use JsonEscapeType
-
Uses of JsonEscapeType in org.unbescape.json
Subclasses with type arguments of type JsonEscapeType in org.unbescape.jsonModifier and TypeClassDescriptionenumTypes of escape operations to be performed on JSON text:Methods in org.unbescape.json that return JsonEscapeTypeModifier and TypeMethodDescriptionstatic JsonEscapeTypeReturns the enum constant of this type with the specified name.static JsonEscapeType[]JsonEscapeType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.json with parameters of type JsonEscapeTypeModifier and TypeMethodDescriptionstatic voidJsonEscape.escapeJson(char[] text, int offset, int len, Writer writer, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a char[] input.static voidJsonEscape.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 voidJsonEscape.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 StringJsonEscape.escapeJson(String text, JsonEscapeType type, JsonEscapeLevel level) Perform a (configurable) JSON escape operation on a String input.