Uses of Class
org.h2.util.json.JSONTarget
-
Packages that use JSONTarget Package Description org.h2.util.json Internal utility classes for JSON data type. -
-
Uses of JSONTarget in org.h2.util.json
Subclasses of JSONTarget in org.h2.util.json Modifier and Type Class Description class
JSONByteArrayTarget
JSON byte array target.class
JSONStringTarget
JSON String target.class
JSONValidationTarget
JSON validation target.class
JSONValidationTargetWithoutUniqueKeys
JSON validation target without unique keys.class
JSONValidationTargetWithUniqueKeys
JSON validation target with unique keys.class
JSONValueTarget
JSON value target.Fields in org.h2.util.json declared as JSONTarget Modifier and Type Field Description (package private) JSONTarget<?>
JSONTextSource. target
The output.Methods in org.h2.util.json with parameters of type JSONTarget Modifier and Type Method Description void
JSONArray. addTo(JSONTarget<?> target)
void
JSONBoolean. addTo(JSONTarget<?> target)
void
JSONNull. addTo(JSONTarget<?> target)
void
JSONNumber. addTo(JSONTarget<?> target)
void
JSONObject. addTo(JSONTarget<?> target)
void
JSONString. addTo(JSONTarget<?> target)
abstract void
JSONValue. addTo(JSONTarget<?> target)
Appends this value to the specified target.static <R> R
JSONBytesSource. parse(byte[] bytes, JSONTarget<R> target)
Parses source bytes to a specified target.static <R> R
JSONStringSource. parse(java.lang.String string, JSONTarget<R> target)
Parses source string to a specified target.Constructors in org.h2.util.json with parameters of type JSONTarget Constructor Description JSONBytesSource(byte[] bytes, JSONTarget<?> target)
JSONStringSource(java.lang.String string, JSONTarget<?> target)
JSONTextSource(JSONTarget<?> target)
-