[jOOQ/jOOQ#18882] HTML encoding issue in DataType Javadoc

This commit is contained in:
Lukas Eder 2025-08-14 15:37:39 +02:00
parent 9a6c97141b
commit 2c9f979db2

View File

@ -207,11 +207,11 @@ public interface DataType<T> extends Named {
* <p>
* <pre><code>
* // Doesn't work
* DataType<UserType[]> t1 =
* DataType&lt;UserType[]> t1 =
* SQLDataType.INTEGER.asConvertedDataType(binding).getArrayDataType();
*
* // Works
* DataType<UserType[]> t2 =
* DataType&lt;UserType[]> t2 =
* SQLDataType.INTEGER.getArrayDataType().asConvertedDataType(arrayBinding);
* </code></pre>
*
@ -233,7 +233,7 @@ public interface DataType<T> extends Named {
* Retrieve the Java component type if this is an ARRAY type, or
* <code>null</code>, otherwise.
* <p>
* E.g. for <code>DataType<String[][][]></code>, this will return
* E.g. for <code>DataType&lt;String[][][]></code>, this will return
* <code>String[][]</code>.
*/
@Nullable
@ -243,7 +243,7 @@ public interface DataType<T> extends Named {
* Retrieve the Java component data type if this is an ARRAY type, or
* <code>null</code>, otherwise.
* <p>
* E.g. for <code>DataType<String[][][]></code>, this will return
* E.g. for <code>DataType&lt;String[][][]></code>, this will return
* <code>DataType&lt;String[][]></code>.
*/
@Nullable
@ -253,7 +253,7 @@ public interface DataType<T> extends Named {
* Retrieve the Java base type if this is an ARRAY type, or
* {@link #getType()}, otherwise.
* <p>
* E.g. for <code>DataType<String[][][]></code>, this will return
* E.g. for <code>DataType&lt;String[][][]></code>, this will return
* <code>String</code>.
*/
@NotNull
@ -263,7 +263,7 @@ public interface DataType<T> extends Named {
* Retrieve the Java component data type if this is an ARRAY type, or
* <code>this</code>, otherwise.
* <p>
* E.g. for <code>DataType<String[][][]></code>, this will return
* E.g. for <code>DataType&lt;String[][][]></code>, this will return
* <code>DataType&lt;String></code>.
*/
@NotNull