Uses of Class
org.h2.util.json.JSONTarget
Packages that use JSONTarget
-
Uses of JSONTarget in org.h2.util.json
Subclasses of JSONTarget in org.h2.util.jsonModifier and TypeClassDescriptionfinal class
JSON byte array target.final class
JSON String target.class
JSON validation target.final class
JSON validation target without unique keys.final class
JSON validation target with unique keys.final class
JSON value target.Fields in org.h2.util.json declared as JSONTargetModifier and TypeFieldDescription(package private) final JSONTarget
<?> JSONTextSource.target
The output.Methods in org.h2.util.json with parameters of type JSONTargetModifier and TypeMethodDescriptionvoid
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
(String string, JSONTarget<R> target) Parses source string to a specified target.Constructors in org.h2.util.json with parameters of type JSONTargetModifierConstructorDescription(package private)
JSONBytesSource
(byte[] bytes, JSONTarget<?> target) (package private)
JSONStringSource
(String string, JSONTarget<?> target) (package private)
JSONTextSource
(JSONTarget<?> target)