From c95a6617cd1f1baebbb58a59055ad011a5dfe806 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Tue, 31 Jan 2017 14:35:47 +0100 Subject: [PATCH] [#5804] Javadoc warning fixes --- .../src/main/java/org/jooq/Configuration.java | 10 +- jOOQ/src/main/java/org/jooq/DSLContext.java | 98 +++++++++---------- jOOQ/src/main/java/org/jooq/Record.java | 46 ++++----- .../src/main/java/org/jooq/RecordContext.java | 2 +- jOOQ/src/main/java/org/jooq/Result.java | 12 +-- jOOQ/src/main/java/org/jooq/Table.java | 4 +- .../java/org/jooq/TransactionProvider.java | 19 ++-- jOOQ/src/main/java/org/jooq/WithStep.java | 96 +++++++++--------- .../java/org/jooq/impl/DefaultDSLContext.java | 1 + 9 files changed, 144 insertions(+), 144 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/Configuration.java b/jOOQ/src/main/java/org/jooq/Configuration.java index 35f45964d6..00544f2509 100644 --- a/jOOQ/src/main/java/org/jooq/Configuration.java +++ b/jOOQ/src/main/java/org/jooq/Configuration.java @@ -400,8 +400,8 @@ public interface Configuration extends Serializable { * This method is not thread-safe and should not be used in globally * available Configuration objects. * - * @param newExecutorProvider The new executor to be contained in the - * changed configuration. + * @param newExecutor The new executor to be contained in the changed + * configuration. * @return The changed configuration. */ Configuration set(Executor newExecutor); @@ -426,7 +426,7 @@ public interface Configuration extends Serializable { * This method is not thread-safe and should not be used in globally * available Configuration objects. * - * @param newConnection The new data source to be contained in the changed + * @param newDataSource The new data source to be contained in the changed * configuration. * @return The changed configuration. */ @@ -453,8 +453,8 @@ public interface Configuration extends Serializable { * This method is not thread-safe and should not be used in globally * available Configuration objects. * - * @param newRecordMapperProvider The new record mapper to be contained in - * the changed configuration. + * @param newRecordMapper The new record mapper to be contained in the + * changed configuration. * @return The changed configuration. */ Configuration set(RecordMapper newRecordMapper); diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index df399e7008..7d4dd81dd2 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -420,7 +420,7 @@ public interface DSLContext extends Scope , AutoCloseable { * DSLContext's underlying {@link #configuration()}'s * {@link Configuration#connectionProvider()}. * - * @param runnable The code running statements against the + * @param callable The code running statements against the * connection. * @return The outcome of the callable */ @@ -4463,7 +4463,7 @@ public interface DSLContext extends Scope , AutoCloseable { * statement from this {@link DSLContext}. If you don't need to render or * execute this SELECT statement (e.g. because you want to * create a subselect), consider using the static - * {@link DSL#select(Field...)} instead. + * {@link DSL#select(SelectField...)} instead. *

* Example:

      * DSLContext create = DSL.using(configuration);
@@ -4485,7 +4485,7 @@ public interface DSLContext extends Scope , AutoCloseable  {
      * using plain SQL
      * 
      *
-     * @see DSL#select(Field...)
+     * @see DSL#select(SelectField...)
      */
     @Support
     SelectSelectStep select(SelectField... fields);
@@ -4495,7 +4495,7 @@ public interface DSLContext extends Scope , AutoCloseable  {
     /**
      * Create a new DSL select statement.
      * 

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Field#in(Select)}, {@link Field#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4525,7 +4525,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row2#in(Select)}, {@link Row2#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4555,7 +4555,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row3#in(Select)}, {@link Row3#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4585,7 +4585,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row4#in(Select)}, {@link Row4#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4615,7 +4615,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row5#in(Select)}, {@link Row5#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4645,7 +4645,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row6#in(Select)}, {@link Row6#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4675,7 +4675,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row7#in(Select)}, {@link Row7#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4705,7 +4705,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row8#in(Select)}, {@link Row8#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4735,7 +4735,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row9#in(Select)}, {@link Row9#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4765,7 +4765,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row10#in(Select)}, {@link Row10#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4795,7 +4795,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row11#in(Select)}, {@link Row11#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4825,7 +4825,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row12#in(Select)}, {@link Row12#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4855,7 +4855,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row13#in(Select)}, {@link Row13#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4885,7 +4885,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row14#in(Select)}, {@link Row14#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4915,7 +4915,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row15#in(Select)}, {@link Row15#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4945,7 +4945,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row16#in(Select)}, {@link Row16#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -4975,7 +4975,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row17#in(Select)}, {@link Row17#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5005,7 +5005,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row18#in(Select)}, {@link Row18#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5035,7 +5035,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row19#in(Select)}, {@link Row19#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5065,7 +5065,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row20#in(Select)}, {@link Row20#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5095,7 +5095,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row21#in(Select)}, {@link Row21#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5125,7 +5125,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row22#in(Select)}, {@link Row22#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5194,7 +5194,7 @@ public interface DSLContext extends Scope , AutoCloseable { * statement from this {@link DSLContext}. If you don't need to render or * execute this SELECT statement (e.g. because you want to * create a subselect), consider using the static - * {@link DSL#selectDistinct(Field...)} instead. + * {@link DSL#selectDistinct(SelectField...)} instead. *

* Example:

      * DSLContext create = DSL.using(configuration);
@@ -5215,7 +5215,7 @@ public interface DSLContext extends Scope , AutoCloseable  {
      * using plain SQL
      * 
      *
-     * @see DSL#selectDistinct(Field...)
+     * @see DSL#selectDistinct(SelectField...)
      */
     @Support
     SelectSelectStep selectDistinct(SelectField... fields);
@@ -5225,7 +5225,7 @@ public interface DSLContext extends Scope , AutoCloseable  {
     /**
      * Create a new DSL select statement.
      * 

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Field#in(Select)}, {@link Field#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5255,7 +5255,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row2#in(Select)}, {@link Row2#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5285,7 +5285,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row3#in(Select)}, {@link Row3#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5315,7 +5315,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row4#in(Select)}, {@link Row4#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5345,7 +5345,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row5#in(Select)}, {@link Row5#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5375,7 +5375,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row6#in(Select)}, {@link Row6#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5405,7 +5405,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row7#in(Select)}, {@link Row7#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5435,7 +5435,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row8#in(Select)}, {@link Row8#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5465,7 +5465,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row9#in(Select)}, {@link Row9#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5495,7 +5495,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row10#in(Select)}, {@link Row10#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5525,7 +5525,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row11#in(Select)}, {@link Row11#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5555,7 +5555,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row12#in(Select)}, {@link Row12#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5585,7 +5585,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row13#in(Select)}, {@link Row13#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5615,7 +5615,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row14#in(Select)}, {@link Row14#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5645,7 +5645,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row15#in(Select)}, {@link Row15#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5675,7 +5675,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row16#in(Select)}, {@link Row16#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5705,7 +5705,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row17#in(Select)}, {@link Row17#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5735,7 +5735,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row18#in(Select)}, {@link Row18#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5765,7 +5765,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row19#in(Select)}, {@link Row19#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5795,7 +5795,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row20#in(Select)}, {@link Row20#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5825,7 +5825,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row21#in(Select)}, {@link Row21#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -5855,7 +5855,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row22#in(Select)}, {@link Row22#equal(Select)} and other predicate * building methods taking subselect arguments. diff --git a/jOOQ/src/main/java/org/jooq/Record.java b/jOOQ/src/main/java/org/jooq/Record.java index b731297c68..d75ed64888 100644 --- a/jOOQ/src/main/java/org/jooq/Record.java +++ b/jOOQ/src/main/java/org/jooq/Record.java @@ -692,7 +692,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record1 into(Field field1); @@ -702,7 +702,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record2 into(Field field1, Field field2); @@ -712,7 +712,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record3 into(Field field1, Field field2, Field field3); @@ -722,7 +722,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record4 into(Field field1, Field field2, Field field3, Field field4); @@ -732,7 +732,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record5 into(Field field1, Field field2, Field field3, Field field4, Field field5); @@ -742,7 +742,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record6 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6); @@ -752,7 +752,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record7 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7); @@ -762,7 +762,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record8 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8); @@ -772,7 +772,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record9 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9); @@ -782,7 +782,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record10 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10); @@ -792,7 +792,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record11 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11); @@ -802,7 +802,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record12 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12); @@ -812,7 +812,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record13 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13); @@ -822,7 +822,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record14 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14); @@ -832,7 +832,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record15 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15); @@ -842,7 +842,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record16 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16); @@ -852,7 +852,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record17 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17); @@ -862,7 +862,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record18 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17, Field field18); @@ -872,7 +872,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record19 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17, Field field18, Field field19); @@ -882,7 +882,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record20 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17, Field field18, Field field19, Field field20); @@ -892,7 +892,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record21 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17, Field field18, Field field19, Field field20, Field field21); @@ -902,7 +902,7 @@ public interface Record extends Attachable, Comparable { * fields. * * @return The new record - * @see #into(Record) + * @see #into(Table) */ @Generated("This class was generated using jOOQ-tools") Record22 into(Field field1, Field field2, Field field3, Field field4, Field field5, Field field6, Field field7, Field field8, Field field9, Field field10, Field field11, Field field12, Field field13, Field field14, Field field15, Field field16, Field field17, Field field18, Field field19, Field field20, Field field21, Field field22); @@ -1591,7 +1591,7 @@ public interface Record extends Attachable, Comparable { * {@link #getValue(String, Converter)} method. It is recommended to use * {@link #get(String, Converter)} instead. * - * @see {@link #get(String, Converter)} + * @see #get(String, Converter) */ U getValue(String fieldName, Converter converter) throws IllegalArgumentException, DataTypeException; diff --git a/jOOQ/src/main/java/org/jooq/RecordContext.java b/jOOQ/src/main/java/org/jooq/RecordContext.java index 824f81e032..86ba08ba75 100644 --- a/jOOQ/src/main/java/org/jooq/RecordContext.java +++ b/jOOQ/src/main/java/org/jooq/RecordContext.java @@ -51,7 +51,7 @@ public interface RecordContext extends Scope { *

    *
  • {@link ExecuteType#BATCH} when calling * {@link DSLContext#batchStore(UpdatableRecord...) batchStore()}, - * {@link DSLContext#batchInsert(UpdatableRecord...) batchInsert()}, + * {@link DSLContext#batchInsert(TableRecord...) batchInsert()}, * {@link DSLContext#batchUpdate(UpdatableRecord...) batchUpdate()}, * {@link DSLContext#batchDelete(UpdatableRecord...) batchDelete()}.
  • *
  • {@link ExecuteType#READ} when calling diff --git a/jOOQ/src/main/java/org/jooq/Result.java b/jOOQ/src/main/java/org/jooq/Result.java index 94d0fc5555..57fc2857f6 100644 --- a/jOOQ/src/main/java/org/jooq/Result.java +++ b/jOOQ/src/main/java/org/jooq/Result.java @@ -997,9 +997,9 @@ public interface Result extends List, Attachable { * non-unique in the result set. Use {@link #intoGroups(String, String)} * instead, if your keys are non-unique * - * @param key The key field name. Client code must assure that this field is - * unique in the result set. - * @param value The value field name + * @param keyFieldName The key field name. Client code must assure that this + * field is unique in the result set. + * @param valueFieldName The value field name * @return A Map containing the results * @throws IllegalArgumentException If any of the argument field names is * not contained in {@link #fieldsRow()} @@ -1017,9 +1017,9 @@ public interface Result extends List, Attachable { * non-unique in the result set. Use {@link #intoGroups(Name, Name)} * instead, if your keys are non-unique * - * @param key The key field name. Client code must assure that this field is - * unique in the result set. - * @param value The value field name + * @param keyFieldName The key field name. Client code must assure that this + * field is unique in the result set. + * @param valueFieldName The value field name * @return A Map containing the results * @throws IllegalArgumentException If any of the argument field names is * not contained in {@link #fieldsRow()} diff --git a/jOOQ/src/main/java/org/jooq/Table.java b/jOOQ/src/main/java/org/jooq/Table.java index a996fba9a5..b63a25c7c8 100644 --- a/jOOQ/src/main/java/org/jooq/Table.java +++ b/jOOQ/src/main/java/org/jooq/Table.java @@ -419,7 +419,7 @@ public interface Table extends TableLike { * MY_TABLE.as(MY_OTHER_TABLE, f -> MY_OTHER_TABLE.field(f)); *
* - * @param alias The alias name + * @param otherTable The other table whose name is used as alias name * @param aliasFunction The function providing field aliases. * @return The table alias */ @@ -437,7 +437,7 @@ public interface Table extends TableLike { * MY_TABLE.as("t1", (f, i) -> "column" + i); *
* - * @param alias The alias name + * @param otherTable The other table whose name is used as alias name * @param aliasFunction The function providing field aliases. * @return The table alias */ diff --git a/jOOQ/src/main/java/org/jooq/TransactionProvider.java b/jOOQ/src/main/java/org/jooq/TransactionProvider.java index b54f69efdf..dea2c400fe 100644 --- a/jOOQ/src/main/java/org/jooq/TransactionProvider.java +++ b/jOOQ/src/main/java/org/jooq/TransactionProvider.java @@ -70,7 +70,7 @@ public interface TransactionProvider { * {@link #commit(TransactionContext)} or * {@link #rollback(TransactionContext)} is called. * - * @param Configuration the configuration scoped to this transaction and its + * @param ctx the configuration scoped to this transaction and its * nested transactions. * @throws DataAccessException Any exception issued by the underlying * database. @@ -78,21 +78,20 @@ public interface TransactionProvider { void begin(TransactionContext ctx) throws DataAccessException; /** - * @param Configuration the configuration scoped to this transaction and its - * nested transactions. - * @param transaction The user-defined transaction object returned from - * {@link #begin(TransactionContext)}. May be null. + * Commit a transaction. + * + * @param ctx the configuration scoped to this transaction and its nested + * transactions. * @throws DataAccessException Any exception issued by the underlying * database. */ void commit(TransactionContext ctx) throws DataAccessException; /** - * @param Configuration the configuration scoped to this transaction and its - * nested transactions. - * @param transaction The user-defined transaction object returned from - * {@link #begin(TransactionContext)}. May be null. - * @param cause The exception that has caused the rollback. + * Rollback a transaction. + * + * @param ctx the configuration scoped to this transaction and its nested + * transactions. * @throws DataAccessException Any exception issued by the underlying * database. */ diff --git a/jOOQ/src/main/java/org/jooq/WithStep.java b/jOOQ/src/main/java/org/jooq/WithStep.java index 0f3a4abcca..9bfc6afd9e 100644 --- a/jOOQ/src/main/java/org/jooq/WithStep.java +++ b/jOOQ/src/main/java/org/jooq/WithStep.java @@ -327,7 +327,7 @@ public interface WithStep extends QueryPart { * statement from this {@link DSLContext}. If you don't need to render or * execute this SELECT statement (e.g. because you want to * create a subselect), consider using the static - * {@link DSL#select(Field...)} instead. + * {@link DSL#select(SelectField...)} instead. *

* Example:

      * DSLContext create = DSL.using(configuration);
@@ -340,7 +340,7 @@ public interface WithStep extends QueryPart {
      *       .execute();
      * 
* - * @see DSL#select(Field...) + * @see DSL#select(SelectField...) */ @Support({ FIREBIRD, HSQLDB, POSTGRES }) SelectSelectStep select(SelectField... fields); @@ -350,7 +350,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Field#in(Select)}, {@link Field#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -381,7 +381,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row2#in(Select)}, {@link Row2#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -412,7 +412,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row3#in(Select)}, {@link Row3#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -443,7 +443,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row4#in(Select)}, {@link Row4#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -474,7 +474,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row5#in(Select)}, {@link Row5#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -505,7 +505,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row6#in(Select)}, {@link Row6#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -536,7 +536,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row7#in(Select)}, {@link Row7#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -567,7 +567,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row8#in(Select)}, {@link Row8#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -598,7 +598,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row9#in(Select)}, {@link Row9#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -629,7 +629,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row10#in(Select)}, {@link Row10#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -660,7 +660,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row11#in(Select)}, {@link Row11#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -691,7 +691,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row12#in(Select)}, {@link Row12#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -722,7 +722,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row13#in(Select)}, {@link Row13#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -753,7 +753,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row14#in(Select)}, {@link Row14#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -784,7 +784,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row15#in(Select)}, {@link Row15#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -815,7 +815,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row16#in(Select)}, {@link Row16#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -846,7 +846,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row17#in(Select)}, {@link Row17#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -877,7 +877,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row18#in(Select)}, {@link Row18#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -908,7 +908,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row19#in(Select)}, {@link Row19#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -939,7 +939,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row20#in(Select)}, {@link Row20#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -970,7 +970,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row21#in(Select)}, {@link Row21#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1001,7 +1001,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #select(Field...)}, except that it + * This is the same as {@link #select(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row22#in(Select)}, {@link Row22#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1062,7 +1062,7 @@ public interface WithStep extends QueryPart { * statement from this {@link DSLContext}. If you don't need to render or * execute this SELECT statement (e.g. because you want to * create a subselect), consider using the static - * {@link DSL#selectDistinct(Field...)} instead. + * {@link DSL#selectDistinct(SelectField...)} instead. *

* Example:

      * DSLContext create = DSL.using(configuration);
@@ -1074,7 +1074,7 @@ public interface WithStep extends QueryPart {
      *       .orderBy(field2);
      * 
* - * @see DSL#selectDistinct(Field...) + * @see DSL#selectDistinct(SelectField...) */ @Support({ FIREBIRD, HSQLDB, POSTGRES }) SelectSelectStep selectDistinct(SelectField... fields); @@ -1084,7 +1084,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Field#in(Select)}, {@link Field#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1115,7 +1115,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row2#in(Select)}, {@link Row2#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1146,7 +1146,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row3#in(Select)}, {@link Row3#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1177,7 +1177,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row4#in(Select)}, {@link Row4#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1208,7 +1208,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row5#in(Select)}, {@link Row5#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1239,7 +1239,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row6#in(Select)}, {@link Row6#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1270,7 +1270,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row7#in(Select)}, {@link Row7#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1301,7 +1301,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row8#in(Select)}, {@link Row8#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1332,7 +1332,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row9#in(Select)}, {@link Row9#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1363,7 +1363,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row10#in(Select)}, {@link Row10#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1394,7 +1394,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row11#in(Select)}, {@link Row11#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1425,7 +1425,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row12#in(Select)}, {@link Row12#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1456,7 +1456,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row13#in(Select)}, {@link Row13#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1487,7 +1487,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row14#in(Select)}, {@link Row14#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1518,7 +1518,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row15#in(Select)}, {@link Row15#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1549,7 +1549,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row16#in(Select)}, {@link Row16#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1580,7 +1580,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row17#in(Select)}, {@link Row17#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1611,7 +1611,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row18#in(Select)}, {@link Row18#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1642,7 +1642,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row19#in(Select)}, {@link Row19#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1673,7 +1673,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row20#in(Select)}, {@link Row20#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1704,7 +1704,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row21#in(Select)}, {@link Row21#equal(Select)} and other predicate * building methods taking subselect arguments. @@ -1735,7 +1735,7 @@ public interface WithStep extends QueryPart { /** * Create a new DSL select statement. *

- * This is the same as {@link #selectDistinct(Field...)}, except that it + * This is the same as {@link #selectDistinct(SelectField...)}, except that it * declares additional record-level typesafety, which is needed by * {@link Row22#in(Select)}, {@link Row22#equal(Select)} and other predicate * building methods taking subselect arguments. diff --git a/jOOQ/src/main/java/org/jooq/impl/DefaultDSLContext.java b/jOOQ/src/main/java/org/jooq/impl/DefaultDSLContext.java index 4f10a27c56..7cf0f8693c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DefaultDSLContext.java +++ b/jOOQ/src/main/java/org/jooq/impl/DefaultDSLContext.java @@ -3144,6 +3144,7 @@ public class DefaultDSLContext extends AbstractScope implements DSLContext, Seri } // [jooq-tools] START [newRecord] + @Generated("This method was generated using jOOQ-tools") @Override public Record1 newRecord(Field field1) {