package oracle.jdbc; import java.sql.SQLException; public interface StructMetaData extends OracleResultSetMetaData { String getAttributeJavaName(int i) throws SQLException; int getLocalColumnCount() throws SQLException; String getOracleColumnClassName(int i) throws SQLException; boolean isInherited(int i) throws SQLException; }