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 voidGeoJsonUtils. parse(JSONValue v, GeometryUtils.Target target)private static voidGeoJsonUtils. parseCoordinate(JSONValue v, GeometryUtils.Target target, int index, int total)private static voidGeoJsonUtils. parseRing(JSONValue[] points, GeometryUtils.Target target)private static doubleGeoJsonUtils. 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 classJSONArrayJSON array.classJSONBooleanJSON boolean.classJSONNullJSON null.classJSONNumberJSON number.classJSONObjectJSON object.classJSONStringJSON string.Fields in org.h2.util.json declared as JSONValue Modifier and Type Field Description private JSONValueJSONValueTarget. resultFields in org.h2.util.json with type parameters of type JSONValue Modifier and Type Field Description private java.util.ArrayList<JSONValue>JSONArray. elementsprivate java.util.ArrayList<java.util.AbstractMap.SimpleImmutableEntry<java.lang.String,JSONValue>>JSONObject. membersprivate java.util.ArrayDeque<JSONValue>JSONValueTarget. stackMethods in org.h2.util.json that return JSONValue Modifier and Type Method Description JSONValue[]JSONArray. getArray()Returns the value.JSONValueJSONObject. getFirst(java.lang.String name)Returns value of the first member with the specified name.JSONValueJSONValueTarget. 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) voidJSONArray. addElement(JSONValue value)Add a value to the array.(package private) voidJSONObject. addMember(java.lang.String name, JSONValue value)Add a key-value pair.private voidJSONValueTarget. afterValue(JSONValue value)
-