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 classJSONByteArrayTargetJSON byte array target.classJSONStringTargetJSON String target.classJSONValidationTargetJSON validation target.classJSONValidationTargetWithoutUniqueKeysJSON validation target without unique keys.classJSONValidationTargetWithUniqueKeysJSON validation target with unique keys.classJSONValueTargetJSON value target.Fields in org.h2.util.json declared as JSONTarget Modifier and Type Field Description (package private) JSONTarget<?>JSONTextSource. targetThe output.Methods in org.h2.util.json with parameters of type JSONTarget Modifier and Type Method Description voidJSONArray. addTo(JSONTarget<?> target)voidJSONBoolean. addTo(JSONTarget<?> target)voidJSONNull. addTo(JSONTarget<?> target)voidJSONNumber. addTo(JSONTarget<?> target)voidJSONObject. addTo(JSONTarget<?> target)voidJSONString. addTo(JSONTarget<?> target)abstract voidJSONValue. addTo(JSONTarget<?> target)Appends this value to the specified target.static <R> RJSONBytesSource. parse(byte[] bytes, JSONTarget<R> target)Parses source bytes to a specified target.static <R> RJSONStringSource. 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)
-