This repository was archived by the owner on Dec 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
src/main/java/dev/miku/r2dbc/mysql Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 30
30
import java .util .function .Predicate ;
31
31
32
32
/**
33
- * An implementation of {@link Set< String>} for {@code RowMetadata.getColumnNames} results.
33
+ * An implementation of {@link Set}{@code <}{@link String}{@code >} for {@code RowMetadata.getColumnNames} results.
34
34
*
35
35
* @see MySqlNames column name searching rules.
36
36
*/
Original file line number Diff line number Diff line change @@ -157,13 +157,14 @@ public final class MySqlConnectionFactoryProvider implements ConnectionFactoryPr
157
157
* parametrized statements and text query for simple statements. If it is {@code false}, driver will
158
158
* use client preparing for parametrized statements and text query for simple statements.
159
159
* <p>
160
- * The value can be a {@link Predicate< String>}. If it is set, driver will server preparing for
161
- * parametrized statements, it configures whether to prefer prepare execution on a statement-by-statement
162
- * basis (simple statements). The {@link Predicate< String>} accepts the simple SQL query string and
163
- * returns a {@code boolean} flag indicating preference.
160
+ * The value can be a {@link Predicate}{@code <}{@link String}{@code >}. If it is set, driver will server
161
+ * preparing for parametrized statements, it configures whether to prefer prepare execution on a statement-
162
+ * by-statement basis (simple statements). The {@link Predicate}{@code <}{@link String}{@code >} accepts
163
+ * the simple SQL query string and returns a {@code boolean} flag indicating preference.
164
164
* <p>
165
165
* The value can be a {@link String}. If it is set, driver will try to convert it to {@link Boolean}
166
- * or an instance of {@link Predicate<String>} which use reflection with a public no-args constructor.
166
+ * or an instance of {@link Predicate}{@code <}{@link String}{@code >} which use reflection with a public
167
+ * no-args constructor.
167
168
*
168
169
* @since 0.8.1
169
170
*/
Original file line number Diff line number Diff line change 30
30
import static dev .miku .r2dbc .mysql .util .InternalArrays .EMPTY_BYTES ;
31
31
32
32
/**
33
- * Codec for {@link byte[]}.
33
+ * Codec for {@code byte[]}.
34
34
*/
35
35
final class ByteArrayCodec extends AbstractClassedCodec <byte []> {
36
36
Original file line number Diff line number Diff line change 38
38
import static dev .miku .r2dbc .mysql .util .InternalArrays .EMPTY_STRINGS ;
39
39
40
40
/**
41
- * Codec for {@link Set< String>}, {@link Set< Enum>} and {@link String[]}.
41
+ * Codec for {@link Set}{@code <}{@link String}{@code >}, {@link Set}{@code <}{@link Enum}{@code >} and {@link String}{@code []}.
42
42
*/
43
43
final class SetCodec implements ParametrizedCodec <String []> {
44
44
You can’t perform that action at this time.
0 commit comments