[jOOQ/jOOQ#18882] HTML encoding issue in DataType Javadoc
This commit is contained in:
parent
9a6c97141b
commit
2c9f979db2
@ -207,11 +207,11 @@ public interface DataType<T> extends Named {
|
||||
* <p>
|
||||
* <pre><code>
|
||||
* // Doesn't work
|
||||
* DataType<UserType[]> t1 =
|
||||
* DataType<UserType[]> t1 =
|
||||
* SQLDataType.INTEGER.asConvertedDataType(binding).getArrayDataType();
|
||||
*
|
||||
* // Works
|
||||
* DataType<UserType[]> t2 =
|
||||
* DataType<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<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<String[][][]></code>, this will return
|
||||
* <code>DataType<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<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<String[][][]></code>, this will return
|
||||
* <code>DataType<String></code>.
|
||||
*/
|
||||
@NotNull
|
||||
|
||||
Loading…
Reference in New Issue
Block a user