Skip to content

Commit 52a53b1

Browse files
author
i.kriushenkov
committed
[JOOQ]: Change headers in javadoc
1 parent 9140b02 commit 52a53b1

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

jooq-dialect/src/main/java/tech/ydb/jooq/Replace.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* An <code>REPLACE</code> statement.
99
* <p>
1010
* <strong>Example:</strong>
11-
* <p>
1211
* <pre><code>
1312
* // Assuming import static org.jooq.impl.DSL.* and tech.ydb.jooq.*;
1413
*
@@ -21,6 +20,8 @@
2120
* <p>
2221
* Instances can be created using {@link YDB#replaceInto(Table)}, or
2322
* {@link YdbDSLContext#replaceQuery(Table)} and overloads.
23+
*
24+
* @param <R> the record type that is being manipulated by the REPLACE statement
2425
*/
2526
public interface Replace<R extends Record> extends DMLQuery<R> {
2627

jooq-dialect/src/main/java/tech/ydb/jooq/Upsert.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* An <code>UPSERT</code> statement.
99
* <p>
1010
* <strong>Example:</strong>
11-
* <p>
1211
* <pre><code>
1312
* // Assuming import static org.jooq.impl.DSL.* and tech.ydb.jooq.*;
1413
*
@@ -21,6 +20,8 @@
2120
* <p>
2221
* Instances can be created using {@link YDB#upsertInto(Table)}, or
2322
* {@link YdbDSLContext#upsertQuery(Table)} and overloads.
23+
*
24+
* @param <R> the record type that is being manipulated by the UPSERT statement
2425
*/
2526
public interface Upsert<R extends Record> extends DMLQuery<R> {
2627

jooq-dialect/src/main/java/tech/ydb/jooq/dsl/replace/ReplaceSetMoreStep.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
* .set(field2, value4)
2525
* .execute();
2626
* </code></pre>
27-
* <p>
28-
* <h3>Referencing <code>XYZ*Step</code> types directly from client code</h3>
27+
* <h2>Referencing <code>XYZ*Step</code> types directly from client code</h2>
2928
* <p>
3029
* It is usually not recommended to reference any <code>XYZ*Step</code> types
3130
* directly from client code, or assign them to local variables. When writing

jooq-dialect/src/main/java/tech/ydb/jooq/dsl/replace/ReplaceSetStep.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import org.jooq.Select;
1010
import org.jooq.Table;
1111
import tech.ydb.jooq.Replace;
12+
import tech.ydb.jooq.YdbDSLContext;
1213

1314
import java.util.Collection;
1415
import java.util.Map;
@@ -27,8 +28,7 @@
2728
* .set(field2, value4)
2829
* .execute();
2930
* </code></pre>
30-
* <p>
31-
* <h3>Referencing <code>XYZ*Step</code> types directly from client code</h3>
31+
* <h2>Referencing <code>XYZ*Step</code> types directly from client code</h2>
3232
* <p>
3333
* It is usually not recommended to reference any <code>XYZ*Step</code> types
3434
* directly from client code, or assign them to local variables. When writing

jooq-dialect/src/main/java/tech/ydb/jooq/dsl/replace/ReplaceValuesStep18.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* .values(valueB1, valueB2, valueB3, .., valueB17, valueB18)
2020
* .execute();
2121
* </code></pre>
22-
*
23-
* @author Lukas Eder
2422
*/
2523
public interface ReplaceValuesStep18<R extends Record, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> extends Replace<R> {
2624

jooq-dialect/src/main/java/tech/ydb/jooq/dsl/upsert/UpsertSetMoreStep.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
* .set(field2, value4)
2626
* .execute();
2727
* </code></pre>
28-
* <p>
29-
* <h3>Referencing <code>XYZ*Step</code> types directly from client code</h3>
28+
* <h2>Referencing <code>XYZ*Step</code> types directly from client code</h2>
3029
* <p>
3130
* It is usually not recommended to reference any <code>XYZ*Step</code> types
3231
* directly from client code, or assign them to local variables. When writing

jooq-dialect/src/main/java/tech/ydb/jooq/dsl/upsert/UpsertSetStep.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import org.jooq.Record;
55
import org.jooq.*;
66
import tech.ydb.jooq.Upsert;
7+
import tech.ydb.jooq.YdbDSLContext;
78

89
import java.util.Collection;
910
import java.util.Map;
@@ -22,8 +23,7 @@
2223
* .set(field2, value4)
2324
* .execute();
2425
* </code></pre>
25-
* <p>
26-
* <h3>Referencing <code>XYZ*Step</code> types directly from client code</h3>
26+
* <h2>Referencing <code>XYZ*Step</code> types directly from client code</h2>
2727
* <p>
2828
* It is usually not recommended to reference any <code>XYZ*Step</code> types
2929
* directly from client code, or assign them to local variables. When writing

0 commit comments

Comments
 (0)