[jOOQ/jOOQ#10646] Document that import-on-demand cannot be used with org.jooq.Record

This commit is contained in:
Lukas Eder 2020-09-18 09:43:49 +02:00
parent 3a672ccdf7
commit 9a13287b35

View File

@ -99,6 +99,28 @@ import org.jetbrains.annotations.Nullable;
* jOOQ records have a natural ordering implemented in the same way as this is
* defined in the SQL standard. For more details, see the
* {@link #compareTo(Record)} method.
* <p>
* <h5>Importing Record</h5>
* <p>
* Starting from Java 14, the <code>Record</code> type conflicts with
* {@link java.lang.Record}, which is always imported by default. According to
* Java Language Specification, this means that jOOQ's <code>Record</code> type
* can no longer be imported on demand. This is not sufficient:
*
* <pre>
* <code>
* import org.jooq.*;
* </code>
* </pre>
*
* You have to do this instead:
*
* <pre>
* <code>
* import org.jooq.*;
* import org.jooq.Record;
* </code>
* </pre>
*
* @author Lukas Eder
* @see Result