JSONDecoder
or have a static decode method.See: Description
Class | Description |
---|---|
isValid |
Methods that determine whether this is a valid item of the specified type
|
ToJavaCollectionJSONDecoder |
This takes a String that is properly JSONEncoded and turns it into a Java Collections object
|
ToJavaObjectJSONDecoder |
This takes a String that is properly JSONEncoded and turns it into a Java Object
|
ToScalaCollectionJSONDecoder |
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
ToScalaCollectionJSONDecoder$ |
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
ToScalaEitherJSONDecoder |
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
ToScalaEitherJSONDecoder$ |
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
JSONDecoder
or have a static decode method.
A possible usage of these would be something like:
String s = "{\"Hello\",\"World\"}";
Map<?, ?> o = (Map<?, ?>)
ToJavaCollectionJSONDecoder
.decode(s)
o.get("Hello") // returns "World"