aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2014-05-07 02:51:27 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2014-05-07 02:51:27 +0000
commit903e35369a7c7ceea4a73858e4744e17ee8c8eb8 (patch)
treedff2f09be86449fecbca845445494505065f15b4 /src/main/java/com/healthmarketscience
parent840ccbde0f0729e976fde4cec1a2fbfe55559b7b (diff)
downloadjackcess-903e35369a7c7ceea4a73858e4744e17ee8c8eb8.tar.gz
jackcess-903e35369a7c7ceea4a73858e4744e17ee8c8eb8.zip
enhance javadocs
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@860 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main/java/com/healthmarketscience')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/Row.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/Row.java b/src/main/java/com/healthmarketscience/jackcess/Row.java
index da3a4c6..e5d797d 100644
--- a/src/main/java/com/healthmarketscience/jackcess/Row.java
+++ b/src/main/java/com/healthmarketscience/jackcess/Row.java
@@ -42,67 +42,67 @@ public interface Row extends Map<String,Object>
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a String.
+ * casting it to a String (DataTypes TEXT, MEMO, GUID).
*/
public String getString(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Boolean.
+ * casting it to a Boolean (DataType BOOLEAN).
*/
public Boolean getBoolean(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Byte.
+ * casting it to a Byte (DataType BYTE).
*/
public Byte getByte(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Short.
+ * casting it to a Short (DataType INT).
*/
public Short getShort(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Integer.
+ * casting it to a Integer (DataType LONG).
*/
public Integer getInt(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a BigDecimal.
+ * casting it to a BigDecimal (DataTypes MONEY, NUMERIC).
*/
public BigDecimal getBigDecimal(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Float.
+ * casting it to a Float (DataType FLOAT).
*/
public Float getFloat(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Double.
+ * casting it to a Double (DataType DOUBLE).
*/
public Double getDouble(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a Date.
+ * casting it to a Date (DataType SHORT_DATE_TIME).
*/
public Date getDate(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a byte[].
+ * casting it to a byte[] (DataTypes BINARY, OLE).
*/
public byte[] getBytes(String name);
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a ComplexValueForeignKey.
+ * casting it to a ComplexValueForeignKey (DataType COMPLEX_TYPE).
*/
public ComplexValueForeignKey getForeignKey(String name);
}