interface RJsonParser
Tools for parsing, converting, and formatting RJson and Json.
abstract fun streamToJsonStream(rjsonStream: InputStream): InputStream
Converts an RJson or Json stream to a Json stream  | 
|
abstract fun streamToRJsonStream(jsonStream: InputStream): InputStream
Converts and RJson or Json stream to an RJson stream  | 
|
abstract fun streamToValue(rjsonStream: InputStream): JsonValue
Converts an RJson or Json stream to a JsonValue.  | 
|
abstract fun stringToJson(rjsonString: String): String
Converts RJson or Json string to a compact Json string.  | 
|
abstract fun stringToValue(rjsonString: String): JsonValue
Converts RJson or Json string to a JsonValue.  | 
class RJsonParser2 : RJsonParser |