Methods Summary |
---|
public oracle.sql.CustomDatum | create(oracle.sql.Datum d, int sqlType)
if (d == null) return null;
PersonLocationTypRef r = new PersonLocationTypRef();
r._ref = (REF) d;
return r;
|
public static oracle.sql.CustomDatumFactory | getFactory()
return _PersonLocationTypRefFactory;
|
public PersonLocationTyp | getValue()
return (PersonLocationTyp) PersonLocationTyp.getFactory().create(
_ref.getSTRUCT(), OracleTypes.REF);
|
public void | setValue(PersonLocationTyp c)
_ref.setValue((STRUCT) c.toDatum(_ref.getConnection()));
|
public oracle.sql.Datum | toDatum(oracle.jdbc.driver.OracleConnection c)
return _ref;
|