[jOOQ/jOOQ#15286] Fixed issue reference
This commit is contained in:
parent
4540d0ecd7
commit
582d12904b
@ -347,7 +347,7 @@ extends
|
||||
* "guessed" from the jOOQ-configured data types. Use
|
||||
* {@link #cast(DataType)} for more accurate casts.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -452,7 +452,7 @@ extends
|
||||
* BOOK.ID.cast(String.class);
|
||||
* </code></pre>
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
|
||||
@ -12211,7 +12211,7 @@ public class DSL {
|
||||
* <p>
|
||||
* This is an alias for {@link #default_(Class)}.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -12273,7 +12273,7 @@ public class DSL {
|
||||
* Create a <code>DEFAULT</code> keyword for use with <code>INSERT</code>,
|
||||
* <code>UPDATE</code>, or <code>MERGE</code> statements.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -12375,7 +12375,7 @@ public class DSL {
|
||||
* {@link #noField()} simply projects <code>NULL</code> and cannot be used
|
||||
* to avoid the clause.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class} references
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class} references
|
||||
* of types supported by jOOQ internally, i.e. 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
|
||||
@ -12565,7 +12565,7 @@ public class DSL {
|
||||
* </code>
|
||||
* </pre>
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -12732,7 +12732,7 @@ public class DSL {
|
||||
* </code>
|
||||
* </pre>
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14068,7 +14068,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14118,7 +14118,7 @@ public class DSL {
|
||||
* Create the <code>VALUE</code> pseudo field for usage with
|
||||
* <code>DOMAIN</code> specifications.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14162,7 +14162,7 @@ public class DSL {
|
||||
/**
|
||||
* Create a <code>DOMAIN</code> reference.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14178,7 +14178,7 @@ public class DSL {
|
||||
/**
|
||||
* Create a <code>DOMAIN</code> reference.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14384,7 +14384,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only {@link Class}
|
||||
* references of types supported by jOOQ internally, i.e. 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
|
||||
@ -14426,7 +14426,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14465,7 +14465,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14705,7 +14705,7 @@ public class DSL {
|
||||
* escape literals when concatenated into SQL clauses! One way to escape
|
||||
* literals is to use {@link #name(String...)} and similar methods
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14738,7 +14738,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14783,7 +14783,7 @@ public class DSL {
|
||||
* <code>function()</code> can be used to access native or user-defined
|
||||
* functions that are not yet or insufficiently supported by jOOQ.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14838,7 +14838,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14884,7 +14884,7 @@ public class DSL {
|
||||
* <code>aggregate()</code> can be used to access native or user-defined
|
||||
* aggregate functions that are not yet or insufficiently supported by jOOQ.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14927,7 +14927,7 @@ public class DSL {
|
||||
* malicious SQL injection. Be sure to properly use bind variables and/or
|
||||
* escape literals when concatenated into SQL clauses!
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -14974,7 +14974,7 @@ public class DSL {
|
||||
* user-defined aggregate functions that are not yet or insufficiently
|
||||
* supported by jOOQ.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -16053,7 +16053,7 @@ public class DSL {
|
||||
/**
|
||||
* Coerce this field to another type.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -16139,7 +16139,7 @@ public class DSL {
|
||||
* BOOK.ID.cast(String.class);
|
||||
* </code></pre>
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -16277,7 +16277,7 @@ public class DSL {
|
||||
/**
|
||||
* Cast a value to another type.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -16299,7 +16299,7 @@ public class DSL {
|
||||
/**
|
||||
* Cast a field to another type.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -16362,7 +16362,7 @@ public class DSL {
|
||||
/**
|
||||
* Cast null to a type.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -30387,7 +30387,7 @@ public class DSL {
|
||||
/**
|
||||
* Create an unnamed parameter with a defined type and no initial value.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -30453,7 +30453,7 @@ public class DSL {
|
||||
/**
|
||||
* Create a named parameter with a defined type and no initial value.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -30981,7 +30981,7 @@ public class DSL {
|
||||
* A synonym for {@link #val(Object, Class)} to be used in Scala and Groovy,
|
||||
* where <code>val</code> is a reserved keyword.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -31964,7 +31964,7 @@ public class DSL {
|
||||
* <li><code>field("abc'def")</code> renders <code>abc'def</code></li>
|
||||
* </ul>
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -32479,7 +32479,7 @@ public class DSL {
|
||||
/**
|
||||
* Get a bind value with an associated type, taken from a field.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
@ -34368,7 +34368,7 @@ public class DSL {
|
||||
* Get the default data type for the {@link DSLContext}'s underlying
|
||||
* {@link SQLDialect} and a given Java type.
|
||||
* <p>
|
||||
* <b>NOTE [#15268]</b>: It is strongly recommended to pass only
|
||||
* <b>NOTE [#15286]</b>: It is strongly recommended to pass only
|
||||
* {@link Class} references of types supported by jOOQ internally, i.e.
|
||||
* 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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user