public interface Row
extends java.util.Map<java.lang.String,java.lang.Object>
| Modifier and Type | Method and Description |
|---|---|
java.math.BigDecimal |
getBigDecimal(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a BigDecimal (DataTypes MONEY, NUMERIC).
|
OleBlob |
getBlob(java.lang.String name)
Convenience method which gets the value for the row with the given name,
converting it to an
OleBlob (DataTypes OLE). |
java.lang.Boolean |
getBoolean(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Boolean (DataType BOOLEAN).
|
java.lang.Byte |
getByte(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Byte (DataType BYTE).
|
byte[] |
getBytes(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a byte[] (DataTypes BINARY, OLE).
|
java.util.Date |
getDate(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Date (DataType SHORT_DATE_TIME).
|
java.lang.Double |
getDouble(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Double (DataType DOUBLE).
|
java.lang.Float |
getFloat(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Float (DataType FLOAT).
|
ComplexValueForeignKey |
getForeignKey(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a
ComplexValueForeignKey (DataType COMPLEX_TYPE). |
RowId |
getId() |
java.lang.Integer |
getInt(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Integer (DataType LONG).
|
java.lang.Short |
getShort(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a Short (DataType INT).
|
java.lang.String |
getString(java.lang.String name)
Convenience method which gets the value for the row with the given name,
casting it to a String (DataTypes TEXT, MEMO, GUID).
|
RowId getId()
java.lang.String getString(java.lang.String name)
java.lang.Boolean getBoolean(java.lang.String name)
java.lang.Byte getByte(java.lang.String name)
java.lang.Short getShort(java.lang.String name)
java.lang.Integer getInt(java.lang.String name)
java.math.BigDecimal getBigDecimal(java.lang.String name)
java.lang.Float getFloat(java.lang.String name)
java.lang.Double getDouble(java.lang.String name)
java.util.Date getDate(java.lang.String name)
byte[] getBytes(java.lang.String name)
ComplexValueForeignKey getForeignKey(java.lang.String name)
ComplexValueForeignKey (DataType COMPLEX_TYPE).