Package | Description |
---|---|
oracle.sql.json |
The API for JSON type in Oracle Database.
|
Modifier and Type | Class and Description |
---|---|
class |
OracleJsonGenerationException
Indicates that a problem occurred during JSON generation.
|
class |
OracleJsonParsingException
Indicates that a problem occurred during JSON parsing.
|
Modifier and Type | Method and Description |
---|---|
OracleJsonDecimal |
OracleJsonFactory.createDecimal(BigDecimal value)
Creates a new JSON decimal.
|
OracleJsonDecimal |
OracleJsonFactory.createDecimal(BigDecimal value)
Creates a new JSON decimal.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(ByteBuffer in)
Creates a binary JSON parser from the given buffer.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(ByteBuffer in)
Creates a binary JSON parser from the given buffer.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(InputStream in)
Creates a binary JSON parser from the given byte
stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonBinaryParser(InputStream in)
Creates a binary JSON parser from the given byte
stream.
|
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(ByteBuffer in)
Creates a
JsonValue from the given binary JSON
buffer. |
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(ByteBuffer in)
Creates a
JsonValue from the given binary JSON
buffer. |
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(InputStream in)
Creates a
OracleJsonValue from the given binary JSON
stream. |
OracleJsonValue |
OracleJsonFactory.createJsonBinaryValue(InputStream in)
Creates a
OracleJsonValue from the given binary JSON
stream. |
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(InputStream in)
Creates a JSON text parser from the given byte stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(InputStream in)
Creates a JSON text parser from the given byte stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(Reader in)
Creates a JSON text parser from the given character stream.
|
OracleJsonParser |
OracleJsonFactory.createJsonTextParser(Reader in)
Creates a JSON text parser from the given character stream.
|
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(InputStream in)
Creates a
OracleJsonValue from the given textual JSON
stream. |
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(InputStream in)
Creates a
OracleJsonValue from the given textual JSON
stream. |
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(Reader in)
Creates a
OracleJsonValue from the given textual JSON
stream. |
OracleJsonValue |
OracleJsonFactory.createJsonTextValue(Reader in)
Creates a
OracleJsonValue from the given textual JSON
stream. |
OracleJsonValue |
OracleJsonObject.put(String key,
BigDecimal value)
Associates the specified decimal value with the specified key.
|
OracleJsonValue |
OracleJsonObject.put(String key,
BigDecimal value)
Associates the specified decimal value with the specified key.
|
OracleJsonValue |
OracleJsonArray.set(int index,
BigDecimal value)
Replaces the value at the specified position in the array with the
specified decimal value.
|
OracleJsonValue |
OracleJsonArray.set(int index,
BigDecimal value)
Replaces the value at the specified position in the array with the
specified decimal value.
|