Javadoc format and related polishing
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -58,7 +58,7 @@ public class ArgumentPreparedStatementSetter implements PreparedStatementSetter,
|
||||
* @param ps the PreparedStatement
|
||||
* @param parameterPosition index of the parameter position
|
||||
* @param argValue the value to set
|
||||
* @throws SQLException
|
||||
* @throws SQLException if thrown by PreparedStatement methods
|
||||
*/
|
||||
protected void doSetValue(PreparedStatement ps, int parameterPosition, Object argValue) throws SQLException {
|
||||
if (argValue instanceof SqlParameterValue) {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -92,7 +92,7 @@ public class ArgumentTypePreparedStatementSetter implements PreparedStatementSet
|
||||
* @param parameterPosition index of the parameter position
|
||||
* @param argType the argument type
|
||||
* @param argValue the argument value
|
||||
* @throws SQLException
|
||||
* @throws SQLException if thrown by PreparedStatement methods
|
||||
*/
|
||||
protected void doSetValue(PreparedStatement ps, int parameterPosition, int argType, Object argValue)
|
||||
throws SQLException {
|
||||
|
||||
@@ -42,7 +42,7 @@ public abstract class SqlParameterSourceUtils {
|
||||
* @return an array of {@link SqlParameterSource}
|
||||
* @see MapSqlParameterSource
|
||||
* @see BeanPropertySqlParameterSource
|
||||
* @see NamedParameterJdbcTemplate#batchUpdate(String, SqlParameterSource[]))
|
||||
* @see NamedParameterJdbcTemplate#batchUpdate(String, SqlParameterSource[])
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static SqlParameterSource[] createBatch(Object... candidates) {
|
||||
@@ -58,7 +58,7 @@ public abstract class SqlParameterSourceUtils {
|
||||
* @since 5.0.2
|
||||
* @see MapSqlParameterSource
|
||||
* @see BeanPropertySqlParameterSource
|
||||
* @see NamedParameterJdbcTemplate#batchUpdate(String, SqlParameterSource[]))
|
||||
* @see NamedParameterJdbcTemplate#batchUpdate(String, SqlParameterSource[])
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static SqlParameterSource[] createBatch(Collection<?> candidates) {
|
||||
|
||||
Reference in New Issue
Block a user