Modifier and Type | Method and Description |
---|---|
BigDecimal |
getBigDecimal(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(String name)
Convenience method which gets the value for the row with the given name,
converting it to an
OleBlob (DataTypes OLE). |
Boolean |
getBoolean(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Boolean (DataType BOOLEAN).
|
Byte |
getByte(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Byte (DataType BYTE).
|
byte[] |
getBytes(String name)
Convenience method which gets the value for the row with the given name,
casting it to a byte[] (DataTypes BINARY, OLE).
|
Date |
getDate(String name)
Deprecated.
this is only valid for Database instances configured for the
legacy
DateTimeType.DATE . Prefer using
DateTimeType.LOCAL_DATE_TIME and the corresponding
getLocalDateTime(java.lang.String) method. Using Date is being phased
out and will eventually be removed. |
Double |
getDouble(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Double (DataType DOUBLE).
|
Float |
getFloat(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Float (DataType FLOAT).
|
ComplexValueForeignKey |
getForeignKey(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() |
Integer |
getInt(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Integer (DataType LONG).
|
LocalDateTime |
getLocalDateTime(String name)
Convenience method which gets the value for the row with the given name,
casting it to a LocalDateTime (DataType SHORT_DATE_TIME or
EXT_DATE_TIME).
|
Short |
getShort(String name)
Convenience method which gets the value for the row with the given name,
casting it to a Short (DataType INT).
|
String |
getString(String name)
Convenience method which gets the value for the row with the given name,
casting it to a String (DataTypes TEXT, MEMO, GUID).
|
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
RowId getId()
String getString(String name)
Boolean getBoolean(String name)
Byte getByte(String name)
Short getShort(String name)
Integer getInt(String name)
BigDecimal getBigDecimal(String name)
Float getFloat(String name)
Double getDouble(String name)
@Deprecated Date getDate(String name)
DateTimeType.DATE
. Prefer using
DateTimeType.LOCAL_DATE_TIME
and the corresponding
getLocalDateTime(java.lang.String)
method. Using Date is being phased
out and will eventually be removed.LocalDateTime getLocalDateTime(String name)
DateTimeType.LOCAL_DATE_TIME
.byte[] getBytes(String name)
ComplexValueForeignKey getForeignKey(String name)
ComplexValueForeignKey
(DataType COMPLEX_TYPE).OleBlob getBlob(String name) throws IOException
OleBlob
(DataTypes OLE).
Note, the OleBlob should be closed after use.
IOException
Copyright © 2005–2024 OpenHMS. All rights reserved.