Methods Summary |
---|
public java.lang.String | getCode()
return code;
|
public java.sql.Timestamp | getEndDate()
return endDate;
|
public java.math.BigDecimal | getLocationId()
return locationId;
|
public java.lang.String | getName()
return name;
|
public java.math.BigDecimal | getParentLocationId()
return parentLocationId;
|
public java.lang.String | getSQLTypeName()
return "SCOTT.LOCATION_TYP";
|
public java.sql.Timestamp | getStartDate()
return startDate;
|
public void | readSQL(java.sql.SQLInput stream, java.lang.String type)
locationId = stream.readBigDecimal();
parentLocationId = stream.readBigDecimal();
code = stream.readString();
name = stream.readString();
startDate = stream.readTimestamp();
endDate = stream.readTimestamp();
|
public void | setCode(java.lang.String code)
this.code = code;
|
public void | setEndDate(java.sql.Timestamp endDate)
this.endDate = endDate;
|
public void | setLocationId(java.math.BigDecimal locationId)
this.locationId = locationId;
|
public void | setName(java.lang.String name)
this.name = name;
|
public void | setParentLocationId(java.math.BigDecimal parentLocationId)
this.parentLocationId = parentLocationId;
|
public void | setStartDate(java.sql.Timestamp startDate)
this.startDate = startDate;
|
public void | writeSQL(java.sql.SQLOutput stream)
stream.writeBigDecimal(locationId);
stream.writeBigDecimal(parentLocationId);
stream.writeString(code);
stream.writeString(name);
stream.writeTimestamp(startDate);
stream.writeTimestamp(endDate);
|