Package org.h2.util.json
Class JSONValue
- java.lang.Object
-
- org.h2.util.json.JSONValue
-
- Direct Known Subclasses:
JSONArray
,JSONBoolean
,JSONNull
,JSONNumber
,JSONObject
,JSONString
public abstract class JSONValue extends java.lang.Object
JSON value.
-
-
Constructor Summary
Constructors Constructor Description JSONValue()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
addTo(JSONTarget<?> target)
Appends this value to the specified target.java.lang.String
toString()
-
-
-
Method Detail
-
addTo
public abstract void addTo(JSONTarget<?> target)
Appends this value to the specified target.- Parameters:
target
- the target
-
toString
public final java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-