java.lang.Object
org.jooq.tools.json.JSONValue
Deprecated, for removal: This API element is subject to removal in a future version.
- 3.21.0 - [#18329] - This shaded third party dependency will be
removed without replacement. Please use any other JSON parser,
instead - e.g. Jackson.
- Author:
- FangYidong<fangyidong@yahoo.com.cn>
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringDeprecated, for removal: This API element is subject to removal in a future version.Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).static ObjectDeprecated, for removal: This API element is subject to removal in a future version.Parse JSON text into java object from the input source.static ObjectDeprecated, for removal: This API element is subject to removal in a future version.static StringtoJSONString(Object value) Deprecated, for removal: This API element is subject to removal in a future version.Convert an object to JSON text.static voidwriteJSONString(Object value, Writer out) Deprecated, for removal: This API element is subject to removal in a future version.Encode an object into JSON text and write it to out.static voidwriteJSONString(Object value, Writer out, boolean nanAsString, boolean infinityAsString) Deprecated, for removal: This API element is subject to removal in a future version.Encode an object into JSON text and write it to out.
-
Constructor Details
-
JSONValue
public JSONValue()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
writeJSONString
Deprecated, for removal: This API element is subject to removal in a future version.Encode an object into JSON text and write it to out.- Throws:
IOException- See Also:
-
writeJSONString
public static void writeJSONString(Object value, Writer out, boolean nanAsString, boolean infinityAsString) throws IOException Deprecated, for removal: This API element is subject to removal in a future version.Encode an object into JSON text and write it to out.- Throws:
IOException- See Also:
-
toJSONString
Deprecated, for removal: This API element is subject to removal in a future version.Convert an object to JSON text.- Returns:
- JSON text, or "null" if value is null or it's an NaN or an INF number.
- See Also:
-
escape
Deprecated, for removal: This API element is subject to removal in a future version.Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). -
parseWithException
Deprecated, for removal: This API element is subject to removal in a future version.Parse JSON text into java object from the input source.- Returns:
- Instance of the following: org.json.simple.JSONObject, org.json.simple.JSONArray, java.lang.String, java.lang.Number, java.lang.Boolean, null
- Throws:
IOExceptionParseException
-
parseWithException
Deprecated, for removal: This API element is subject to removal in a future version.- Throws:
ParseException
-