diff --git a/jOOQ/src/main/java/org/jooq/Record.java b/jOOQ/src/main/java/org/jooq/Record.java index f0d7e3613e..119fa0db33 100644 --- a/jOOQ/src/main/java/org/jooq/Record.java +++ b/jOOQ/src/main/java/org/jooq/Record.java @@ -1226,11 +1226,20 @@ public interface Record extends FieldProvider, Store { E into(E object) throws MappingException; /** - * Map resulting records onto a custom record type. The mapping algorithm is - * this:

jOOQ will map Record values by equal field names:

- * If a field's value for {@link Field#getName()} is MY_field - * (case-sensitive!), then there must be a field in table with - * the exact same name.

Other restrictions

+ * Map resulting records onto a custom record type. + *

+ * The mapping algorithm is this: + *

jOOQ will map Record values by equal field names:

+ * + *

Other restrictions

*