Package oracle.jdbc
Interface OracleTypeMetaData
-
- All Known Subinterfaces:
OracleTypeMetaData.Array,OracleTypeMetaData.Opaque,OracleTypeMetaData.Struct
- All Known Implementing Classes:
ArrayDescriptor,OpaqueDescriptor,StructDescriptor,TypeDescriptor
public interface OracleTypeMetaDataThis extension defines methods for meta data describing Oracle specific Types.OracleArrayreplacesARRAY.OracleOpaquereplacesOPAQUE.OracleStructreplacesSTRUCT.- Since:
- 11.2.0.3.0
-
<section role="region">
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceOracleTypeMetaData.ArrayThis nested interfacet defines additional methods for array typesstatic classOracleTypeMetaData.ArrayStorageIdentifiesstatic classOracleTypeMetaData.KindIdentifies the kind of named type.static interfaceOracleTypeMetaData.OpaqueThis nested interface defines additional methods for opaque typesstatic interfaceOracleTypeMetaData.StructThis nested interface defines additional methods for struct types
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleTypeMetaData.KindgetKind()Return the kind of type.StringgetName()Return fully qualified type name.StringgetSchemaName()Return sql schema name.oracle.sql.SQLNamegetSQLName()Fully parsed namedintgetTypeCode()Returns type code.StringgetTypeCodeName()Returns the type code name.
-
-
<section role="region">
-
Method Detail
-
getKind
OracleTypeMetaData.Kind getKind()
Return the kind of type.- Returns:
- kind of type
-
getName
String getName() throws SQLException
Return fully qualified type name.- Throws:
SQLException
-
getSQLName
oracle.sql.SQLName getSQLName() throws SQLExceptionFully parsed named- Throws:
SQLException
-
getSchemaName
String getSchemaName() throws SQLException
Return sql schema name.- Throws:
SQLException
-
getTypeCode
int getTypeCode() throws SQLExceptionReturns type code.- Throws:
SQLException
-
getTypeCodeName
String getTypeCodeName() throws SQLException
Returns the type code name.- Throws:
SQLException
-
-