From 9404a8a108a07e1c661892a8a59c2e9cb4d182be Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 20 Nov 2019 18:06:01 +0100 Subject: [PATCH] Polishing --- .../springframework/jdbc/support/rowset/SqlRowSet.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/SqlRowSet.java b/spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/SqlRowSet.java index a74135222c..aff2b7eb40 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/SqlRowSet.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/SqlRowSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2019 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. @@ -219,8 +219,8 @@ public interface SqlRowSet extends Serializable { * (for NCHAR, NVARCHAR, LONGNVARCHAR columns). * @param columnIndex the column index * @return a String representing the column value - * @see java.sql.ResultSet#getNString(int) * @since 4.1.3 + * @see java.sql.ResultSet#getNString(int) */ String getNString(int columnIndex) throws InvalidResultSetAccessException; @@ -229,8 +229,8 @@ public interface SqlRowSet extends Serializable { * (for NCHAR, NVARCHAR, LONGNVARCHAR columns). * @param columnLabel the column label * @return a String representing the column value - * @see java.sql.ResultSet#getNString(String) * @since 4.1.3 + * @see java.sql.ResultSet#getNString(String) */ String getNString(String columnLabel) throws InvalidResultSetAccessException; @@ -273,8 +273,8 @@ public interface SqlRowSet extends Serializable { * @param columnIndex the column index * @param type the Java type to convert the designated column to * @return a Object representing the column value - * @see java.sql.ResultSet#getObject(int) * @since 4.1.3 + * @see java.sql.ResultSet#getObject(int, Class) */ T getObject(int columnIndex, Class type) throws InvalidResultSetAccessException; @@ -283,8 +283,8 @@ public interface SqlRowSet extends Serializable { * @param columnLabel the column label * @param type the Java type to convert the designated column to * @return a Object representing the column value - * @see java.sql.ResultSet#getObject(int) * @since 4.1.3 + * @see java.sql.ResultSet#getObject(String, Class) */ T getObject(String columnLabel, Class type) throws InvalidResultSetAccessException; -- GitLab