Uses of Class
org.h2.util.json.JSONValue
-
Packages that use JSONValue Package Description org.h2.util.geometry Internal utility classes for GEOMETRY data type.org.h2.util.json Internal utility classes for JSON data type. -
-
Uses of JSONValue in org.h2.util.geometry
Methods in org.h2.util.geometry with parameters of type JSONValue Modifier and Type Method Description private static void
GeoJsonUtils. parse(JSONValue v, GeometryUtils.Target target)
private static void
GeoJsonUtils. parseCoordinate(JSONValue v, GeometryUtils.Target target, int index, int total)
private static void
GeoJsonUtils. parseRing(JSONValue[] points, GeometryUtils.Target target)
private static double
GeoJsonUtils. readCoordinate(JSONValue[] values, int index)
-
Uses of JSONValue in org.h2.util.json
Subclasses of JSONValue in org.h2.util.json Modifier and Type Class Description class
JSONArray
JSON array.class
JSONBoolean
JSON boolean.class
JSONNull
JSON null.class
JSONNumber
JSON number.class
JSONObject
JSON object.class
JSONString
JSON string.Fields in org.h2.util.json declared as JSONValue Modifier and Type Field Description private JSONValue
JSONValueTarget. result
Fields in org.h2.util.json with type parameters of type JSONValue Modifier and Type Field Description private java.util.ArrayList<JSONValue>
JSONArray. elements
private java.util.ArrayList<java.util.AbstractMap.SimpleImmutableEntry<java.lang.String,JSONValue>>
JSONObject. members
private java.util.ArrayDeque<JSONValue>
JSONValueTarget. stack
Methods in org.h2.util.json that return JSONValue Modifier and Type Method Description JSONValue[]
JSONArray. getArray()
Returns the value.JSONValue
JSONObject. getFirst(java.lang.String name)
Returns value of the first member with the specified name.JSONValue
JSONValueTarget. getResult()
Methods in org.h2.util.json that return types with arguments of type JSONValue Modifier and Type Method Description java.util.Map.Entry<java.lang.String,JSONValue>[]
JSONObject. getMembers()
Returns the value.Methods in org.h2.util.json with parameters of type JSONValue Modifier and Type Method Description (package private) void
JSONArray. addElement(JSONValue value)
Add a value to the array.(package private) void
JSONObject. addMember(java.lang.String name, JSONValue value)
Add a key-value pair.private void
JSONValueTarget. afterValue(JSONValue value)
-