From e0cbdda66edf3625698a223dee48d28f66106970 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Mon, 5 Jan 2015 16:05:33 +0100 Subject: [PATCH] [#3894] Clarify Record.getValue() behaviour in Javadoc --- jOOQ/src/main/java/org/jooq/Record.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/Record.java b/jOOQ/src/main/java/org/jooq/Record.java index cf30969e6b..5dbdda68b8 100644 --- a/jOOQ/src/main/java/org/jooq/Record.java +++ b/jOOQ/src/main/java/org/jooq/Record.java @@ -170,6 +170,9 @@ public interface Record extends Attachable, Comparable { /** * Get a value from this Record, providing a field. + *

+ * If this record contains a field with the same {@link Field#getName()} as + * the argument field, that value is retrieved. * * @param The generic field parameter * @param field The field @@ -196,6 +199,9 @@ public interface Record extends Attachable, Comparable { /** * Get a converted value from this Record, providing a field. + *

+ * If this record contains a field with the same {@link Field#getName()} as + * the argument field, that value is retrieved. * * @param The conversion type parameter * @param field The field @@ -233,6 +239,9 @@ public interface Record extends Attachable, Comparable { /** * Get a converted value from this Record, providing a field. + *

+ * If this record contains a field with the same {@link Field#getName()} as + * the argument field, that value is retrieved. * * @param The database type parameter * @param The conversion type parameter