Methods Summary |
---|
public oracle.sql.CustomDatum | create(oracle.sql.Datum d, int sqlType)
if (d == null) return null;
PersonLocationTyp o = new PersonLocationTyp();
o._struct = new MutableStruct((STRUCT) d, _sqlType, _factory);
o._ctx = new _Ctx(((STRUCT) d).getConnection());
return o;
|
public java.sql.Timestamp | getEndDate()
return (java.sql.Timestamp) _struct.getAttribute(3);
|
public static oracle.sql.CustomDatumFactory | getFactory()
return _PersonLocationTypFactory;
|
public java.math.BigDecimal | getLocationId()
return (java.math.BigDecimal) _struct.getAttribute(1);
|
public java.math.BigDecimal | getPersonId()
return (java.math.BigDecimal) _struct.getAttribute(0);
|
public java.sql.Timestamp | getStartDate()
return (java.sql.Timestamp) _struct.getAttribute(2);
|
public void | setEndDate(java.sql.Timestamp endDate)
_struct.setAttribute(3, endDate);
|
public void | setLocationId(java.math.BigDecimal locationId)
_struct.setAttribute(1, locationId);
|
public void | setPersonId(java.math.BigDecimal personId)
_struct.setAttribute(0, personId);
|
public void | setStartDate(java.sql.Timestamp startDate)
_struct.setAttribute(2, startDate);
|
public oracle.sql.Datum | toDatum(oracle.jdbc.driver.OracleConnection c)
_ctx = new _Ctx(c);
return _struct.toDatum(c, _SQL_NAME);
|