public interface Row
Modifier and Type | Method and Description |
---|---|
java.math.BigDecimal |
getBigDecimal(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a decimal value.
|
java.math.BigDecimal |
getBigDecimal(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a decimal value.
|
boolean |
getBoolean(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a boolean value.
|
boolean |
getBoolean(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a boolean value.
|
byte |
getByte(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
|
byte |
getByte(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a byte value.
|
java.sql.Date |
getDate(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
|
java.sql.Date |
getDate(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a
Date value. |
DbDoc |
getDbDoc(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a DbDoc value.
|
DbDoc |
getDbDoc(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a DbDoc value.
|
double |
getDouble(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a double value.
|
double |
getDouble(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a double value.
|
int |
getInt(int pos)
Retrieve the value for column at position `pos' (starting at 0) as an integer value.
|
int |
getInt(java.lang.String fieldName)
Retrieve the value for column `fieldName' as an integer value.
|
long |
getLong(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a long value.
|
long |
getLong(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a long value.
|
java.lang.String |
getString(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a string value.
|
java.lang.String |
getString(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a string value.
|
java.sql.Time |
getTime(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
|
java.sql.Time |
getTime(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a
Time value. |
java.sql.Timestamp |
getTimestamp(int pos)
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
|
java.sql.Timestamp |
getTimestamp(java.lang.String fieldName)
Retrieve the value for column `fieldName' as a
Timestamp value. |
java.math.BigDecimal getBigDecimal(java.lang.String fieldName)
fieldName
- field namejava.math.BigDecimal getBigDecimal(int pos)
pos
- field positionboolean getBoolean(java.lang.String fieldName)
fieldName
- field nameboolean getBoolean(int pos)
pos
- field position
field positionbyte getByte(java.lang.String fieldName)
fieldName
- field namebyte getByte(int pos)
pos
- field position
field positionjava.sql.Date getDate(java.lang.String fieldName)
Date
value.fieldName
- field namejava.sql.Date getDate(int pos)
pos
- field position
field positionDbDoc getDbDoc(java.lang.String fieldName)
fieldName
- field nameDbDoc getDbDoc(int pos)
pos
- field position
field positiondouble getDouble(java.lang.String fieldName)
fieldName
- field namedouble getDouble(int pos)
pos
- field position
field positionint getInt(java.lang.String fieldName)
fieldName
- field nameint getInt(int pos)
pos
- field position
field positionlong getLong(java.lang.String fieldName)
fieldName
- field namelong getLong(int pos)
pos
- field positionjava.lang.String getString(java.lang.String fieldName)
fieldName
- field namejava.lang.String getString(int pos)
pos
- field positionjava.sql.Time getTime(java.lang.String fieldName)
Time
value.fieldName
- field namejava.sql.Time getTime(int pos)
pos
- field positionjava.sql.Timestamp getTimestamp(java.lang.String fieldName)
Timestamp
value.fieldName
- field namejava.sql.Timestamp getTimestamp(int pos)
pos
- field position