aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2021-06-10 00:49:05 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2021-06-10 00:49:05 +0000
commit331e72a262cd2ed4defb889ff3eeefc80452f79f (patch)
tree48db75cbadf57bc185e5881ba27be006eb090610 /src/main/java
parent9706c1f1e579844f89bc39d979851ee0065096b0 (diff)
downloadjackcess-331e72a262cd2ed4defb889ff3eeefc80452f79f.tar.gz
jackcess-331e72a262cd2ed4defb889ff3eeefc80452f79f.zip
add unit tests for extended date/time type
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1366 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/Row.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/Row.java b/src/main/java/com/healthmarketscience/jackcess/Row.java
index 430dfd1..ad60301 100644
--- a/src/main/java/com/healthmarketscience/jackcess/Row.java
+++ b/src/main/java/com/healthmarketscience/jackcess/Row.java
@@ -102,9 +102,9 @@ public interface Row extends Map<String,Object>
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a LocalDateTime (DataType SHORT_DATE_TIME). This method
- * will only work for Database instances configured for
- * {@link DateTimeType#LOCAL_DATE_TIME}.
+ * casting it to a LocalDateTime (DataType SHORT_DATE_TIME or
+ * EXT_DATE_TIME). This method will only work for Database instances
+ * configured for {@link DateTimeType#LOCAL_DATE_TIME}.
*/
public LocalDateTime getLocalDateTime(String name);