Uses of Interface
oracle.sql.json.OracleJsonParser
-
Packages that use OracleJsonParser Package Description oracle.jdbc.spi This package defines service provider interfaces (SPIs) that are consumed by the Oracle JDBC Driver.oracle.sql.json The API for JSON type in Oracle Database. -
-
Uses of OracleJsonParser in oracle.jdbc.spi
Methods in oracle.jdbc.spi with parameters of type OracleJsonParser Modifier and Type Method Description java.lang.Object
OsonConverter. deserialize(OracleJsonParser oParser, java.lang.Class<?> type)
Deserialize the OSON bytes represented by this parser into an instance of the class provided. -
Uses of OracleJsonParser in oracle.sql.json
Methods in oracle.sql.json that return OracleJsonParser Modifier and Type Method Description 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.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.
-