Package com.rayrobdod.javaScriptObjectNotation.parser.decoders

These are classes that either implement JSONDecoder or have a static decode method.

See: Description

Package com.rayrobdod.javaScriptObjectNotation.parser.decoders Description

These are classes that either implement 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"