OracleJsonDecimal |
OracleJsonFactory.createDecimal(java.math.BigDecimal value) |
Creates a new JSON decimal.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(java.io.InputStream in) |
Creates a binary JSON parser from the given byte
stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(java.nio.ByteBuffer in) |
Creates a binary JSON parser from the given buffer.
|
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.
|
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(java.io.InputStream in) |
Creates a JSON text parser from the given byte stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(java.io.Reader in) |
Creates a JSON text parser from the given character stream.
|
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 |
OracleJsonObject.put(java.lang.String key,
java.math.BigDecimal value) |
Associates the specified decimal value with the specified key.
|
OracleJsonValue |
OracleJsonArray.set(int index,
java.math.BigDecimal value) |
Replaces the value at the specified position in the array with the
specified decimal value.
|