Package org.h2.util.json
Class JSONStringSource
- java.lang.Object
-
- org.h2.util.json.JSONTextSource
-
- org.h2.util.json.JSONStringSource
-
public final class JSONStringSource extends JSONTextSource
JSON string source.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static byte[]normalize(java.lang.String string)Normalizes textual JSON representation.static <R> Rparse(java.lang.String string, JSONTarget<R> target)Parses source string to a specified target.java.lang.StringtoString()
-
-
-
Method Detail
-
parse
public static <R> R parse(java.lang.String string, JSONTarget<R> target)Parses source string to a specified target.- Type Parameters:
R- the type of the result- Parameters:
string- sourcetarget- target- Returns:
- the result of the target
-
normalize
public static byte[] normalize(java.lang.String string)
Normalizes textual JSON representation.- Parameters:
string- source representation- Returns:
- normalized representation
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-