| Package | Description |
|---|---|
| com.mysql.cj.xdevapi |
Java classes for X DevAPI support.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DbDoc
The object representation of a JSON document.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DbDocImpl
Represents a JSON object:
|
class |
JsonArray
Represents a JSON array.
|
class |
JsonLiteral
Represents JSON true, false and null literals.
|
class |
JsonNumber
Represents a JSON number.
|
class |
JsonString
Represents a JSON string.
|
| Modifier and Type | Method and Description |
|---|---|
private static JsonValue |
JsonParser.nextValue(java.io.StringReader reader) |
| Modifier and Type | Method and Description |
|---|---|
DbDoc |
DbDocImpl.add(java.lang.String key,
JsonValue val) |
DbDoc |
DbDoc.add(java.lang.String key,
JsonValue val)
Add
JsonValue to the top-level document hierarchy. |
JsonArray |
JsonArray.addValue(JsonValue val)
Add value to this array.
|