OracleJsonValue |
OracleJsonFactory.createBoolean(boolean value) |
Creates a new JSON boolean value.
|
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(java.io.InputStream in) |
Creates a OracleJsonValue from the given binary JSON
stream.
|
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(java.nio.ByteBuffer in) |
Creates a JsonValue from the given binary JSON
buffer.
|
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(java.io.InputStream in) |
Creates a OracleJsonValue from the given textual JSON
stream.
|
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(java.io.Reader in) |
Creates a OracleJsonValue from the given textual JSON
stream.
|
OracleJsonValue |
OracleJsonFactory.createNull() |
Returns OracleJsonValue.NULL .
|
OracleJsonValue |
OracleJsonFactory.createValue(Datum datum) |
Creates a new JSON value from a Datum.
|
OracleJsonValue |
OracleJsonParser.getValue() |
Return the value at the current parser event.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
boolean value) |
Associates the specified boolean value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
byte[] values) |
Associates the specified binary value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
double value) |
Associates the specified double value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
int value) |
Associates the specified integer value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
long value) |
Associates the specified long value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
java.lang.String value) |
Associates the specified string value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
java.math.BigDecimal value) |
Associates the specified decimal value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
java.time.LocalDateTime value) |
Associates the specified value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(java.lang.String key,
java.time.OffsetDateTime value) |
Associates the specified value with the specified key.
|
OracleJsonValue |
OracleJsonObject.putNull(java.lang.String key) |
Associates the NULL with the specified key.
|
OracleJsonValue |
OracleJsonArray.set(int index,
boolean value) |
Replaces the value at the specified position in the array with the
specified boolean .
|
OracleJsonValue |
OracleJsonArray.set(int index,
byte[] value) |
Replaces the value at the specified position in the array with the
specified byte array.
|
OracleJsonValue |
OracleJsonArray.set(int index,
double value) |
Replaces the value at the specified position in the array with the
specified double .
|
OracleJsonValue |
OracleJsonArray.set(int index,
int value) |
Replaces the value at the specified position in the array with the
specified integer.
|
OracleJsonValue |
OracleJsonArray.set(int index,
long value) |
Replaces the value at the specified position in the array with the
specified long .
|
OracleJsonValue |
OracleJsonArray.set(int index,
java.lang.String value) |
Replaces the value at the specified position in the array with the
specified string.
|
OracleJsonValue |
OracleJsonArray.set(int index,
java.math.BigDecimal value) |
Replaces the value at the specified position in the array with the
specified decimal value.
|
OracleJsonValue |
OracleJsonArray.set(int index,
java.time.LocalDateTime value) |
Replaces the value at the specified position in the array with the
specified LocalDateTime .
|
OracleJsonValue |
OracleJsonArray.set(int index,
java.time.OffsetDateTime value) |
Replaces the value at the specified position in the array with the
specified OffsetDateTime .
|
OracleJsonValue |
OracleJsonArray.setNull(int index) |
|