public class JSON extends Object
| Constructor and Description |
|---|
JSON() |
| Modifier and Type | Method and Description |
|---|---|
static Object |
parse(String s)
Parses a JSON string representing a JSON value
|
static Object |
parse(String s,
BSONCallback c)
Parses a JSON string representing a JSON value
|
static String |
serialize(Object o)
Serializes an object into its JSON form.
|
static void |
serialize(Object o,
StringBuilder buf)
Serializes an object into its JSON form.
|
public static String serialize(Object o)
This method delegates serialization to JSONSerializers.getLegacy
o - object to serializeJSONSerializers.getLegacy()public static void serialize(Object o, StringBuilder buf)
This method delegates serialization to JSONSerializers.getLegacy
o - object to serializebuf - StringBuilder containing the JSON representation under constructionJSONSerializers.getLegacy()public static Object parse(String s)
s - the string to parsepublic static Object parse(String s, BSONCallback c)
s - the string to parse