diff --git a/jOOQ-codegen/src/main/java/org/jooq/codegen/Constants.java b/jOOQ-codegen/src/main/java/org/jooq/codegen/Constants.java index 50b0d60f6d..ec8ee5ba46 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/codegen/Constants.java +++ b/jOOQ-codegen/src/main/java/org/jooq/codegen/Constants.java @@ -149,7 +149,7 @@ public final class Constants { /** - * The maximum degree of {@link Row} and {@link Record} subtypes + * The maximum degree of {@link org.jooq.Row} and {@link org.jooq.Record} subtypes */ public static final int MAX_ROW_DEGREE = 22; diff --git a/jOOQ-meta/src/main/java/org/jooq/meta/Constants.java b/jOOQ-meta/src/main/java/org/jooq/meta/Constants.java index db13d0aba7..a5320330b6 100644 --- a/jOOQ-meta/src/main/java/org/jooq/meta/Constants.java +++ b/jOOQ-meta/src/main/java/org/jooq/meta/Constants.java @@ -149,7 +149,7 @@ public final class Constants { /** - * The maximum degree of {@link Row} and {@link Record} subtypes + * The maximum degree of {@link org.jooq.Row} and {@link org.jooq.Record} subtypes */ public static final int MAX_ROW_DEGREE = 22; diff --git a/jOOQ-meta/src/main/java/org/jooq/meta/Database.java b/jOOQ-meta/src/main/java/org/jooq/meta/Database.java index 0f2cb0a564..8a2e6c80fc 100644 --- a/jOOQ-meta/src/main/java/org/jooq/meta/Database.java +++ b/jOOQ-meta/src/main/java/org/jooq/meta/Database.java @@ -882,7 +882,7 @@ public interface Database extends AutoCloseable { * of synthetic primary keys in generated code. * * @deprecated - 3.14.0 - [#10588] - Use - * {@link #setConfiguredSyntheticKeys(SyntheticKeysType)} + * {@link #setConfiguredSyntheticObjects(SyntheticObjectsType)} * instead. */ @Deprecated @@ -903,7 +903,7 @@ public interface Database extends AutoCloseable { * primary keys in generated code. * * @deprecated - 3.14.0 - [#10588] - Use - * {@link #setConfiguredSyntheticKeys(SyntheticKeysType)} + * {@link #setConfiguredSyntheticObjects(SyntheticObjectsType)} * instead. */ @Deprecated @@ -924,7 +924,7 @@ public interface Database extends AutoCloseable { * columns in generated code. * * @deprecated - 3.14.0 - [#10588] - Use - * {@link #setConfiguredSyntheticKeys(SyntheticKeysType)} + * {@link #setConfiguredSyntheticObjects(SyntheticObjectsType)} * instead. */ @Deprecated diff --git a/jOOQ/src/main/java/org/jooq/CommonTableExpression.java b/jOOQ/src/main/java/org/jooq/CommonTableExpression.java index 45eea65b00..f6ddd35355 100644 --- a/jOOQ/src/main/java/org/jooq/CommonTableExpression.java +++ b/jOOQ/src/main/java/org/jooq/CommonTableExpression.java @@ -63,7 +63,7 @@ import org.jetbrains.annotations.ApiStatus.Experimental; * .fetch(); * *

- * Instances can be created using {@link Name#as(Select)}. + * Instances can be created using {@link Name#as(ResultQuery)}. * * @author Lukas Eder */ diff --git a/jOOQ/src/main/java/org/jooq/Constants.java b/jOOQ/src/main/java/org/jooq/Constants.java index a105c77d04..2e70ad47d3 100644 --- a/jOOQ/src/main/java/org/jooq/Constants.java +++ b/jOOQ/src/main/java/org/jooq/Constants.java @@ -149,7 +149,7 @@ public final class Constants { /** - * The maximum degree of {@link Row} and {@link Record} subtypes + * The maximum degree of {@link org.jooq.Row} and {@link org.jooq.Record} subtypes */ public static final int MAX_ROW_DEGREE = 22; diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index 45b1e4b34c..70ec69ee04 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -5100,7 +5100,7 @@ public interface DSLContext extends Scope { *

  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -5125,7 +5125,7 @@ public interface DSLContext extends Scope { *

  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -6060,7 +6060,7 @@ public interface DSLContext extends Scope { *

  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -6085,7 +6085,7 @@ public interface DSLContext extends Scope { *

  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -13913,7 +13913,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2)}, which can be + * {@link #fetchSingle(SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -13932,7 +13932,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -13951,7 +13951,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -13970,7 +13970,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -13989,7 +13989,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14008,7 +14008,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14027,7 +14027,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14046,7 +14046,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14065,7 +14065,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14084,7 +14084,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14103,7 +14103,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14122,7 +14122,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14141,7 +14141,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14160,7 +14160,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14179,7 +14179,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14198,7 +14198,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14217,7 +14217,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17, SelectField18)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14236,7 +14236,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17, SelectField18, SelectField19)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14255,7 +14255,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17, SelectField18, SelectField19, SelectField20)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14274,7 +14274,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17, SelectField18, SelectField19, SelectField20, SelectField21)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. @@ -14293,7 +14293,7 @@ public interface DSLContext extends Scope { * Since jOOQ 3.17, {@link Table} extends {@link SelectField}, and * {@link Condition} extends {@link Field}. As such, there is an overload * conflict between {@link #fetchSingle(Table, Condition...)} and - * {@link #fetchSingle(SelectField1, SelectField2, SelectField3, SelectField4, SelectField5, SelectField6, SelectField7, SelectField8, SelectField9, SelectField10, SelectField11, SelectField12, SelectField13, SelectField14, SelectField15, SelectField16, SelectField17, SelectField18, SelectField19, SelectField20, SelectField21, SelectField22)}, which can be + * {@link #fetchSingle(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)}, which can be * resolved backwards compatibly with this method. * * @return The record. This is never null. diff --git a/jOOQ/src/main/java/org/jooq/Field.java b/jOOQ/src/main/java/org/jooq/Field.java index e407f34c90..0f1000cc25 100644 --- a/jOOQ/src/main/java/org/jooq/Field.java +++ b/jOOQ/src/main/java/org/jooq/Field.java @@ -981,7 +981,7 @@ extends /** * The LIKE operator. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1011,7 +1011,7 @@ extends * {@link SQLDialect#POSTGRES}, or to * lower(this) not like lower(value) in all other dialects. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1133,7 +1133,7 @@ extends /** * The NOT_LIKE operator. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1163,7 +1163,7 @@ extends * {@link SQLDialect#POSTGRES}, or to * lower(this) not like lower(value) in all other dialects. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1186,7 +1186,7 @@ extends /** * The NOT_SIMILAR_TO operator. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, IGNITE, POSTGRES, YUGABYTEDB }) @@ -1209,7 +1209,7 @@ extends /** * The SIMILAR_TO operator. * - * @param pattern is wrapped as {@link #val(Object)}. + * @param pattern is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, IGNITE, POSTGRES, YUGABYTEDB }) @@ -1280,7 +1280,7 @@ extends /** * The BIT_AND operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1296,7 +1296,7 @@ extends /** * The BIT_NAND operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1312,7 +1312,7 @@ extends /** * The BIT_NOR operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1335,7 +1335,7 @@ extends /** * The BIT_OR operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1351,7 +1351,7 @@ extends /** * The BIT_XNOR operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1367,7 +1367,7 @@ extends /** * The BIT_XOR operator. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -1383,7 +1383,7 @@ extends /** * The MOD operator. * - * @param divisor is wrapped as {@link #val(Object)}. + * @param divisor is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1399,7 +1399,7 @@ extends /** * The MODULO operator, an alias for the MOD operator. * - * @param divisor is wrapped as {@link #val(Object)}. + * @param divisor is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1415,7 +1415,7 @@ extends /** * The REM operator, an alias for the MOD operator. * - * @param divisor is wrapped as {@link #val(Object)}. + * @param divisor is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1431,7 +1431,7 @@ extends /** * The POWER operator. * - * @param exponent is wrapped as {@link #val(Object)}. + * @param exponent is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1447,7 +1447,7 @@ extends /** * The POW operator, an alias for the POWER operator. * - * @param exponent is wrapped as {@link #val(Object)}. + * @param exponent is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1515,7 +1515,7 @@ extends /** * The CONTAINS operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\') || '%') escape '\' @@ -1535,7 +1535,7 @@ extends * Note, this does not correspond to the Oracle Text CONTAINS() * function. Refer to {@link OracleDSL#contains(Field, String)} instead. * - * @param content is wrapped as {@link #val(Object)}. + * @param content is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1544,7 +1544,7 @@ extends /** * The CONTAINS operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\') || '%') escape '\' @@ -1571,7 +1571,7 @@ extends /** * The CONTAINS_IGNORE_CASE operator. *

    - * Convenience method for {@link #likeIgnoreCase(String, char)} including + * Convenience method for {@link Field#likeIgnoreCase(String, char)} including * proper adding of wildcards and escaping. *

    * This translates to @@ -1580,7 +1580,7 @@ extends * lower(this) not like lower(('%' || escape(value, '\') || '%') escape '\') * in all other dialects. * - * @param content is wrapped as {@link #val(Object)}. + * @param content is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1589,7 +1589,7 @@ extends /** * The CONTAINS_IGNORE_CASE operator. *

    - * Convenience method for {@link #likeIgnoreCase(String, char)} including + * Convenience method for {@link Field#likeIgnoreCase(String, char)} including * proper adding of wildcards and escaping. *

    * This translates to @@ -1605,7 +1605,7 @@ extends /** * The ENDS_WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\')) escape '\' @@ -1613,7 +1613,7 @@ extends * Note: This also works with numbers, for instance * val(1133).endsWith(33) * - * @param suffix is wrapped as {@link #val(Object)}. + * @param suffix is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1622,7 +1622,7 @@ extends /** * The ENDS_WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\')) escape '\' @@ -1637,7 +1637,7 @@ extends /** * The ENDS_WITH_IGNORE_CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like ('%' || lower(escape(value, '\'))) escape '\' @@ -1645,7 +1645,7 @@ extends * Note: This also works with numbers, for instance * val(1133).endsWithIgnoreCase(33) * - * @param suffix is wrapped as {@link #val(Object)}. + * @param suffix is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1654,7 +1654,7 @@ extends /** * The ENDS_WITH_IGNORE_CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like ('%' || lower(escape(value, '\'))) escape '\' @@ -1669,7 +1669,7 @@ extends /** * The STARTS_WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like (escape(value, '\') || '%') escape '\' @@ -1677,7 +1677,7 @@ extends * Note: This also works with numbers, for instance * val(1133).startsWith(11) * - * @param prefix is wrapped as {@link #val(Object)}. + * @param prefix is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1686,7 +1686,7 @@ extends /** * The STARTS_WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like (escape(value, '\') || '%') escape '\' @@ -1701,7 +1701,7 @@ extends /** * The STARTS_WITH_IGNORE_CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like (lower(escape(value, '\')) || '%') escape '\' @@ -1709,7 +1709,7 @@ extends * Note: This also works with numbers, for instance * val(1133).startsWithIgnoreCase(11) * - * @param prefix is wrapped as {@link #val(Object)}. + * @param prefix is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -1718,7 +1718,7 @@ extends /** * The STARTS_WITH_IGNORE_CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like (lower(escape(value, '\')) || '%') escape '\' diff --git a/jOOQ/src/main/java/org/jooq/SelectQuery.java b/jOOQ/src/main/java/org/jooq/SelectQuery.java index ada91b8a44..c0fa1ded69 100644 --- a/jOOQ/src/main/java/org/jooq/SelectQuery.java +++ b/jOOQ/src/main/java/org/jooq/SelectQuery.java @@ -753,7 +753,8 @@ public interface SelectQuery extends Select, ConditionProvi * ROW_NUMBER() window function and nested SELECT * statements. *

    - * This is the same as calling {@link #addLimit(int, int)} with offset = 0 + * This is the same as calling {@link #addLimit(Number, Number)} with offset + * = 0 * * @param numberOfRows The number of rows to return */ diff --git a/jOOQ/src/main/java/org/jooq/WithStep.java b/jOOQ/src/main/java/org/jooq/WithStep.java index 459ab983db..c3f68e67b2 100644 --- a/jOOQ/src/main/java/org/jooq/WithStep.java +++ b/jOOQ/src/main/java/org/jooq/WithStep.java @@ -487,7 +487,7 @@ public interface WithStep extends QueryPart { *

  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * */ @NotNull @CheckReturnValue @@ -502,7 +502,7 @@ public interface WithStep extends QueryPart { *
  • {@link DSL#name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * */ @NotNull @CheckReturnValue diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java index ecfc1c29bd..8b73f7a237 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DSL.java +++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java @@ -1897,7 +1897,7 @@ public class DSL { *
  • {@link #name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -1924,7 +1924,7 @@ public class DSL { *

  • {@link #name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -2950,7 +2950,7 @@ public class DSL { *

  • {@link #name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -2980,7 +2980,7 @@ public class DSL { *

  • {@link #name(String...)}
  • *
  • {@link Name#fields(String...)}
  • *
  • - * {@link DerivedColumnList#as(Select)}
  • + * {@link DerivedColumnList#as(ResultQuery)} * *

    * The RECURSIVE keyword may be optional or unsupported in some @@ -16285,7 +16285,7 @@ public class DSL { /** * The ABS function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -16305,7 +16305,7 @@ public class DSL { /** * The ACOS function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16325,7 +16325,7 @@ public class DSL { /** * The ACOSH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16345,7 +16345,7 @@ public class DSL { /** * The ACOTH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16365,7 +16365,7 @@ public class DSL { /** * The ASIN function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16385,7 +16385,7 @@ public class DSL { /** * The ASINH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16405,7 +16405,7 @@ public class DSL { /** * The ATAN function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16425,8 +16425,8 @@ public class DSL { /** * The ATAN2 function. * - * @param x is wrapped as {@link #val(Object)}. - * @param y is wrapped as {@link #val(Object)}. + * @param x is wrapped as {@link DSL#val(Object)}. + * @param y is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16437,7 +16437,7 @@ public class DSL { /** * The ATAN2 function. * - * @param x is wrapped as {@link #val(Object)}. + * @param x is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16448,7 +16448,7 @@ public class DSL { /** * The ATAN2 function. * - * @param y is wrapped as {@link #val(Object)}. + * @param y is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16468,7 +16468,7 @@ public class DSL { /** * The ATANH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DERBY, DUCKDB, FIREBIRD, H2, HSQLDB, IGNITE, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -16488,8 +16488,8 @@ public class DSL { /** * The BIT_AND function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16500,7 +16500,7 @@ public class DSL { /** * The BIT_AND function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16511,7 +16511,7 @@ public class DSL { /** * The BIT_AND function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16533,7 +16533,7 @@ public class DSL { *

    * Count the number of bits set in a number * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16555,7 +16555,7 @@ public class DSL { /** * The BIT_GET function. * - * @param bit is wrapped as {@link #val(Object)}. + * @param bit is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16575,8 +16575,8 @@ public class DSL { /** * The BIT_NAND function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16587,7 +16587,7 @@ public class DSL { /** * The BIT_NAND function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16598,7 +16598,7 @@ public class DSL { /** * The BIT_NAND function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16618,8 +16618,8 @@ public class DSL { /** * The BIT_NOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16630,7 +16630,7 @@ public class DSL { /** * The BIT_NOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16641,7 +16641,7 @@ public class DSL { /** * The BIT_NOR function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16661,7 +16661,7 @@ public class DSL { /** * The BIT_NOT function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16681,8 +16681,8 @@ public class DSL { /** * The BIT_OR function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16693,7 +16693,7 @@ public class DSL { /** * The BIT_OR function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16704,7 +16704,7 @@ public class DSL { /** * The BIT_OR function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16724,8 +16724,8 @@ public class DSL { /** * The BIT_SET function. * - * @param bit is wrapped as {@link #val(Object)}. - * @param newValue is wrapped as {@link #val(Object)}. + * @param bit is wrapped as {@link DSL#val(Object)}. + * @param newValue is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16736,7 +16736,7 @@ public class DSL { /** * The BIT_SET function. * - * @param bit is wrapped as {@link #val(Object)}. + * @param bit is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16747,7 +16747,7 @@ public class DSL { /** * The BIT_SET function. * - * @param newValue is wrapped as {@link #val(Object)}. + * @param newValue is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16767,7 +16767,7 @@ public class DSL { /** * The BIT_SET function. * - * @param bit is wrapped as {@link #val(Object)}. + * @param bit is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16787,8 +16787,8 @@ public class DSL { /** * The BIT_XNOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16799,7 +16799,7 @@ public class DSL { /** * The BIT_XNOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16810,7 +16810,7 @@ public class DSL { /** * The BIT_XNOR function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16830,8 +16830,8 @@ public class DSL { /** * The BIT_XOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16842,7 +16842,7 @@ public class DSL { /** * The BIT_XOR function. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16853,7 +16853,7 @@ public class DSL { /** * The BIT_XOR function. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -16875,7 +16875,7 @@ public class DSL { *

    * Get the smallest integer value equal or greater to a value. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -16897,7 +16897,7 @@ public class DSL { /** * The COS function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -16917,7 +16917,7 @@ public class DSL { /** * The COSH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -16937,7 +16937,7 @@ public class DSL { /** * The COT function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -16957,7 +16957,7 @@ public class DSL { /** * The COTH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17014,7 +17014,7 @@ public class DSL { /** * The EXP function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17036,7 +17036,7 @@ public class DSL { *

    * Get the biggest integer value equal or less than a value. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17060,7 +17060,7 @@ public class DSL { *

    * Get the natural logarithm of a value. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17084,8 +17084,8 @@ public class DSL { *

    * Get the logarithm of a value for a base. * - * @param value is wrapped as {@link #val(Object)}. - * @param base is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. + * @param base is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17098,7 +17098,7 @@ public class DSL { *

    * Get the logarithm of a value for a base. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17111,7 +17111,7 @@ public class DSL { *

    * Get the logarithm of a value for a base. * - * @param base is wrapped as {@link #val(Object)}. + * @param base is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17135,7 +17135,7 @@ public class DSL { *

    * Get the logarithm of a value for base 10. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17168,8 +17168,8 @@ public class DSL { /** * The POWER function. * - * @param base is wrapped as {@link #val(Object)}. - * @param exponent is wrapped as {@link #val(Object)}. + * @param base is wrapped as {@link DSL#val(Object)}. + * @param exponent is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17180,7 +17180,7 @@ public class DSL { /** * The POWER function. * - * @param base is wrapped as {@link #val(Object)}. + * @param base is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17191,7 +17191,7 @@ public class DSL { /** * The POWER function. * - * @param exponent is wrapped as {@link #val(Object)}. + * @param exponent is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17444,7 +17444,7 @@ public class DSL { *

    * Get the sign of a number and return it as any of +1, 0, -1. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17466,7 +17466,7 @@ public class DSL { /** * The SIN function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17486,7 +17486,7 @@ public class DSL { /** * The SINH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17506,7 +17506,7 @@ public class DSL { /** * The SQRT function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17526,7 +17526,7 @@ public class DSL { /** * The SQUARE function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17546,7 +17546,7 @@ public class DSL { /** * The TAN function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17566,7 +17566,7 @@ public class DSL { /** * The TANH function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17691,7 +17691,7 @@ public class DSL { *

    * The ASCII value of a character. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, YUGABYTEDB }) @@ -17715,7 +17715,7 @@ public class DSL { *

    * The length of a string in bits. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17739,7 +17739,7 @@ public class DSL { *

    * The length of a string in characters. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17761,7 +17761,7 @@ public class DSL { /** * The CHR function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ DUCKDB, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -17781,7 +17781,7 @@ public class DSL { /** * The DIGITS function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17859,7 +17859,7 @@ public class DSL { *

    * The length of a string in characters. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -17883,7 +17883,7 @@ public class DSL { *

    * Turn a string into lower case. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -18077,7 +18077,7 @@ public class DSL { *

    * Calculate an MD5 hash from a string. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ DUCKDB, MARIADB, MYSQL, POSTGRES, YUGABYTEDB }) @@ -18189,7 +18189,7 @@ public class DSL { *

    * The length of a string in octets. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -18595,7 +18595,7 @@ public class DSL { *

    * Reverse a string. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ CUBRID, DUCKDB, HSQLDB, MARIADB, MYSQL, POSTGRES, TRINO, YUGABYTEDB }) @@ -19217,7 +19217,7 @@ public class DSL { *

    * Format a number to its hex value. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -19439,7 +19439,7 @@ public class DSL { *

    * Turn a string into upper case. * - * @param string is wrapped as {@link #val(Object)}. + * @param string is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support @@ -19957,7 +19957,7 @@ public class DSL { *

    * Get an array element at a given index (1 based). * - * @param index is wrapped as {@link #val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ DUCKDB, H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20025,7 +20025,7 @@ public class DSL { *

    * Append an element to an array. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20049,7 +20049,7 @@ public class DSL { *

    * Append an element to an array. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20073,7 +20073,7 @@ public class DSL { *

    * Prepend an element to an array. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20086,7 +20086,7 @@ public class DSL { *

    * Prepend an element to an array. * - * @param arg1 is wrapped as {@link #val(Object)}. + * @param arg1 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20165,7 +20165,7 @@ public class DSL { *

    * Remove an element from an array. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20189,7 +20189,7 @@ public class DSL { *

    * Remove an element from an array. * - * @param arg2 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20213,8 +20213,8 @@ public class DSL { *

    * Replace an element in an array. * - * @param arg2 is wrapped as {@link #val(Object)}. - * @param arg3 is wrapped as {@link #val(Object)}. + * @param arg2 is wrapped as {@link DSL#val(Object)}. + * @param arg3 is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB }) @@ -20588,7 +20588,7 @@ public class DSL { /** * The XMLCOMMENT function. * - * @param comment is wrapped as {@link #val(Object)}. + * @param comment is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ POSTGRES }) @@ -20694,7 +20694,7 @@ public class DSL { /** * The XMLSERIALIZE function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ POSTGRES }) @@ -20714,7 +20714,7 @@ public class DSL { /** * The XMLSERIALIZE_CONTENT function. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ POSTGRES }) @@ -20830,8 +20830,8 @@ public class DSL { *

    * Access an array element from a JSON array expression. * - * @param field is wrapped as {@link #val(Object)}. - * @param index is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20844,7 +20844,7 @@ public class DSL { *

    * Access an array element from a JSON array expression. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20857,7 +20857,7 @@ public class DSL { *

    * Access an array element from a JSON array expression. * - * @param index is wrapped as {@link #val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20881,8 +20881,8 @@ public class DSL { *

    * Access an array element from a JSONB array expression. * - * @param field is wrapped as {@link #val(Object)}. - * @param index is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20895,7 +20895,7 @@ public class DSL { *

    * Access an array element from a JSONB array expression. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20908,7 +20908,7 @@ public class DSL { *

    * Access an array element from a JSONB array expression. * - * @param index is wrapped as {@link #val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -20932,8 +20932,8 @@ public class DSL { *

    * Access an array element from a JSON array expression and return it as a string. * - * @param field is wrapped as {@link #val(Object)}. - * @param index is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -20946,7 +20946,7 @@ public class DSL { *

    * Access an array element from a JSON array expression and return it as a string. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -20959,7 +20959,7 @@ public class DSL { *

    * Access an array element from a JSON array expression and return it as a string. * - * @param index is wrapped as {@link #val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -20983,8 +20983,8 @@ public class DSL { *

    * Access an array element from a JSONB array expression and return it as a string. * - * @param field is wrapped as {@link #val(Object)}. - * @param index is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -20997,7 +20997,7 @@ public class DSL { *

    * Access an array element from a JSONB array expression and return it as a string. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21010,7 +21010,7 @@ public class DSL { *

    * Access an array element from a JSONB array expression and return it as a string. * - * @param index is wrapped as {@link #val(Object)}. + * @param index is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21034,8 +21034,8 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression. * - * @param field is wrapped as {@link #val(Object)}. - * @param attribute is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21048,7 +21048,7 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21061,7 +21061,7 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression. * - * @param attribute is wrapped as {@link #val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21085,8 +21085,8 @@ public class DSL { *

    * Access an object attribute value from a JSONB object expression. * - * @param field is wrapped as {@link #val(Object)}. - * @param attribute is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21099,7 +21099,7 @@ public class DSL { *

    * Access an object attribute value from a JSONB object expression. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21112,7 +21112,7 @@ public class DSL { *

    * Access an object attribute value from a JSONB object expression. * - * @param attribute is wrapped as {@link #val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21136,8 +21136,8 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression and return it as string. * - * @param field is wrapped as {@link #val(Object)}. - * @param attribute is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21150,7 +21150,7 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression and return it as string. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21163,7 +21163,7 @@ public class DSL { *

    * Access an object attribute value from a JSON object expression and return it as string. * - * @param attribute is wrapped as {@link #val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21188,8 +21188,8 @@ public class DSL { * Access an object attribute value from a JSONB object expression and return it as * string. * - * @param field is wrapped as {@link #val(Object)}. - * @param attribute is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21203,7 +21203,7 @@ public class DSL { * Access an object attribute value from a JSONB object expression and return it as * string. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21217,7 +21217,7 @@ public class DSL { * Access an object attribute value from a JSONB object expression and return it as * string. * - * @param attribute is wrapped as {@link #val(Object)}. + * @param attribute is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB }) @@ -21242,7 +21242,7 @@ public class DSL { *

    * Retrieve all keys from a JSON object as an array of strings. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21266,7 +21266,7 @@ public class DSL { *

    * Retrieve all keys from a JSONB object as an array of strings. * - * @param field is wrapped as {@link #val(Object)}. + * @param field is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) @@ -21290,8 +21290,8 @@ public class DSL { *

    * Add or replace a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21304,7 +21304,7 @@ public class DSL { *

    * Add or replace a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21317,7 +21317,7 @@ public class DSL { *

    * Add or replace a JSON value to a JSON field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21341,8 +21341,8 @@ public class DSL { *

    * Add or replace a JSONB value to a JSONB field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21355,7 +21355,7 @@ public class DSL { *

    * Add or replace a JSONB value to a JSONB field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21368,7 +21368,7 @@ public class DSL { *

    * Add or replace a JSONB value to a JSONB field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21392,8 +21392,8 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21406,7 +21406,7 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21419,7 +21419,7 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21443,8 +21443,8 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21457,7 +21457,7 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21470,7 +21470,7 @@ public class DSL { *

    * Add (but not replace) a JSON value to a JSON field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21494,8 +21494,8 @@ public class DSL { *

    * Replace (but not add) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21508,7 +21508,7 @@ public class DSL { *

    * Replace (but not add) a JSON value to a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21521,7 +21521,7 @@ public class DSL { *

    * Replace (but not add) a JSON value to a JSON field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21545,8 +21545,8 @@ public class DSL { *

    * Replace (but not add) a JSONB value to a JSONB field at a given path. * - * @param path is wrapped as {@link #val(Object)}. - * @param value is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21559,7 +21559,7 @@ public class DSL { *

    * Replace (but not add) a JSONB value to a JSONB field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21572,7 +21572,7 @@ public class DSL { *

    * Replace (but not add) a JSONB value to a JSONB field at a given path. * - * @param value is wrapped as {@link #val(Object)}. + * @param value is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21596,7 +21596,7 @@ public class DSL { *

    * Remove a JSON value from a JSON field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21620,7 +21620,7 @@ public class DSL { *

    * Remove a JSONB value from a JSONB field at a given path. * - * @param path is wrapped as {@link #val(Object)}. + * @param path is wrapped as {@link DSL#val(Object)}. */ @NotNull @Support({ MARIADB, MYSQL, SQLITE }) @@ -21850,7 +21850,7 @@ public class DSL { * The CORR function. *

    * Calculate the correlation coefficient. This standard SQL function may be supported - * natively, or emulated using {@link #covarPop(Field, Field)} and {@link #stddevPop(Field)}. + * natively, or emulated using {@link DSL#covarPop(Field, Field)} and {@link DSL#stddevPop(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -21882,7 +21882,7 @@ public class DSL { * The COVAR_SAMP function. *

    * Calculate the sample covariance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -21896,8 +21896,8 @@ public class DSL { * The COVAR_POP function. *

    * Calculate the population covariance. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @NotNull @@ -22015,7 +22015,7 @@ public class DSL { * The REGR_AVGX function. *

    * Calculate the average of the independent values (x). This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22029,7 +22029,7 @@ public class DSL { * The REGR_AVGY function. *

    * Calculate the average of the dependent values (y). This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22043,7 +22043,7 @@ public class DSL { * The REGR_COUNT function. *

    * Calculate the number of non-NULL pairs. This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22057,7 +22057,7 @@ public class DSL { * The REGR_INTERCEPT function. *

    * Calculate the y intercept of the regression line. This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22071,8 +22071,8 @@ public class DSL { * The REGR_R2 function. *

    * Calculate the coefficient of determination. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @NotNull @@ -22085,8 +22085,8 @@ public class DSL { * The REGR_SLOPE function. *

    * Calculate the slope of the regression line. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @NotNull @@ -22099,7 +22099,7 @@ public class DSL { * The REGR_SXX function. *

    * Calculate the REGR_SXX auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22113,7 +22113,7 @@ public class DSL { * The REGR_SXY function. *

    * Calculate the REGR_SXY auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22127,7 +22127,7 @@ public class DSL { * The REGR_SYY function. *

    * Calculate the REGR_SYY auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22141,8 +22141,8 @@ public class DSL { * The STDDEV_POP function. *

    * Calculate the population standard deviation. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @NotNull @@ -22155,8 +22155,8 @@ public class DSL { * The STDDEV_SAMP function. *

    * Calculate the sample standard deviation. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @NotNull @@ -22187,7 +22187,7 @@ public class DSL { * The VAR_POP function. *

    * Calculate the population variance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -22201,7 +22201,7 @@ public class DSL { * The VAR_SAMP function. *

    * Calculate the sample variance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index 178fd9b260..b9f9c41a78 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -169,7 +169,7 @@ import org.jetbrains.annotations.Nullable; * the DSL and model API functionality. *

    * The goal of this model API is to allow for expression tree transformations - * via {@link QueryPart#$replace(Function1)} as well as via per-querypart + * via {@link QueryPart#$replace(Replacer)} as well as via per-querypart * methods, such as for example {@link Substring#$startingPosition(Field)}, and * traversals via {@link QueryPart#$traverse(Traverser)} that are independent of * the DSL API that would otherwise be too noisy for this task. @@ -4653,7 +4653,7 @@ public final class QOM { /** * The CONTAINS operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\') || '%') escape '\' @@ -4692,7 +4692,7 @@ public final class QOM { /** * The CONTAINS IGNORE CASE operator. *

    - * Convenience method for {@link #likeIgnoreCase(String, char)} including + * Convenience method for {@link Field#likeIgnoreCase(String, char)} including * proper adding of wildcards and escaping. *

    * This translates to @@ -4736,7 +4736,7 @@ public final class QOM { /** * The ENDS WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like ('%' || escape(value, '\')) escape '\' @@ -4763,7 +4763,7 @@ public final class QOM { /** * The ENDS WITH IGNORE CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like ('%' || lower(escape(value, '\'))) escape '\' @@ -5372,7 +5372,7 @@ public final class QOM { /** * The STARTS WITH operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: this like (escape(value, '\') || '%') escape '\' @@ -5399,7 +5399,7 @@ public final class QOM { /** * The STARTS WITH IGNORE CASE operator. *

    - * Convenience method for {@link #like(String, char)} including proper + * Convenience method for {@link Field#like(String, char)} including proper * adding of wildcards and escaping. *

    * SQL: lower(this) like (lower(escape(value, '\')) || '%') escape '\' @@ -6958,7 +6958,7 @@ public final class QOM { * The CORR function. *

    * Calculate the correlation coefficient. This standard SQL function may be supported - * natively, or emulated using {@link #covarPop(Field, Field)} and {@link #stddevPop(Field)}. + * natively, or emulated using {@link DSL#covarPop(Field, Field)} and {@link DSL#stddevPop(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -6997,7 +6997,7 @@ public final class QOM { * The COVAR SAMP function. *

    * Calculate the sample covariance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7019,8 +7019,8 @@ public final class QOM { * The COVAR POP function. *

    * Calculate the population covariance. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ public /*sealed*/ interface CovarPop @@ -7118,7 +7118,7 @@ public final class QOM { * The REGR AVGX function. *

    * Calculate the average of the independent values (x). This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7140,7 +7140,7 @@ public final class QOM { * The REGR AVGY function. *

    * Calculate the average of the dependent values (y). This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7162,7 +7162,7 @@ public final class QOM { * The REGR COUNT function. *

    * Calculate the number of non-NULL pairs. This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7184,7 +7184,7 @@ public final class QOM { * The REGR INTERCEPT function. *

    * Calculate the y intercept of the regression line. This standard SQL function may - * be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7206,8 +7206,8 @@ public final class QOM { * The REGR R2 function. *

    * Calculate the coefficient of determination. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ public /*sealed*/ interface RegrR2 @@ -7228,8 +7228,8 @@ public final class QOM { * The REGR SLOPE function. *

    * Calculate the slope of the regression line. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ public /*sealed*/ interface RegrSlope @@ -7250,7 +7250,7 @@ public final class QOM { * The REGR SXX function. *

    * Calculate the REGR_SXX auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7272,7 +7272,7 @@ public final class QOM { * The REGR SXY function. *

    * Calculate the REGR_SXY auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7294,7 +7294,7 @@ public final class QOM { * The REGR SYY function. *

    * Calculate the REGR_SYY auxiliary function. This standard SQL function - * may be supported natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. + * may be supported natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7316,8 +7316,8 @@ public final class QOM { * The STDDEV POP function. *

    * Calculate the population standard deviation. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ public /*sealed*/ interface StddevPop @@ -7335,8 +7335,8 @@ public final class QOM { * The STDDEV SAMP function. *

    * Calculate the sample standard deviation. This standard SQL function may be supported - * natively, or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an - * emulation is applied, beware of the risk of "Catastrophic + * natively, or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. + * If an emulation is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ public /*sealed*/ interface StddevSamp @@ -7371,7 +7371,7 @@ public final class QOM { * The VAR POP function. *

    * Calculate the population variance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ @@ -7390,7 +7390,7 @@ public final class QOM { * The VAR SAMP function. *

    * Calculate the sample variance. This standard SQL function may be supported natively, - * or emulated using {@link #sum(Field)} and {@link #count(Field)}. If an emulation + * or emulated using {@link DSL#sum(Field)} and {@link DSL#count(Field)}. If an emulation * is applied, beware of the risk of "Catastrophic * cancellation" in case the calculations are performed using floating point arithmetic. */ diff --git a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java index f719ca64c2..60535c5a37 100644 --- a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java +++ b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java @@ -206,7 +206,7 @@ public class PostgresDSL extends DSL { * * * @deprecated - 3.16.0 - [#14388] - Use - * {@link DSL#arrayPrepend(Field, Object)} instead. + * {@link DSL#arrayPrepend(Field, Object[])} instead. */ @Deprecated @NotNull @@ -424,7 +424,7 @@ public class PostgresDSL extends DSL { * * * @deprecated - 3.16.0 - [#14388] - Use - * {@link DSL#arrayConcat(Object[], Object)} instead. + * {@link DSL#arrayConcat(Object[], Object[])} instead. */ @Deprecated @NotNull @@ -445,7 +445,7 @@ public class PostgresDSL extends DSL { * * * @deprecated - 3.16.0 - [#14388] - Use - * {@link DSL#arrayConcat(Field, Object)} instead. + * {@link DSL#arrayConcat(Field, Object[])} instead. */ @Deprecated @NotNull