[jOOQ/jOOQ#16892] Invalid link in Fields javadoc

This commit is contained in:
Lukas Eder 2024-07-02 09:29:07 +02:00
parent 4d3f39274e
commit 4a38be447e

View File

@ -174,7 +174,7 @@ public interface Fields {
* types from {@link SQLDataType}. If you're using any custom data types by
* means of a {@link Converter} or {@link Binding}, it's better to pass that
* converted {@link DataType} reference explicitly to
* {@link #cast(DataType)}.
* {@link #field(Name, DataType)}.
*
* @param name The unqualified name of the field
* @param type The type to coerce the resulting field to
@ -243,7 +243,7 @@ public interface Fields {
* types from {@link SQLDataType}. If you're using any custom data types by
* means of a {@link Converter} or {@link Binding}, it's better to pass that
* converted {@link DataType} reference explicitly to
* {@link #cast(DataType)}.
* {@link #field(Name, DataType)}.
*
* @param name The qualified name of the field
* @param type The type to coerce the resulting field to
@ -295,7 +295,7 @@ public interface Fields {
* types from {@link SQLDataType}. If you're using any custom data types by
* means of a {@link Converter} or {@link Binding}, it's better to pass that
* converted {@link DataType} reference explicitly to
* {@link #cast(DataType)}.
* {@link #field(Name, DataType)}.
*
* @param index The 0-based index of the field
* @param type The type to coerce the resulting field to