diff options
Diffstat (limited to 'libjava/java/sql/ParameterMetaData.java')
-rw-r--r-- | libjava/java/sql/ParameterMetaData.java | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/libjava/java/sql/ParameterMetaData.java b/libjava/java/sql/ParameterMetaData.java index a84bbd4..118c76e 100644 --- a/libjava/java/sql/ParameterMetaData.java +++ b/libjava/java/sql/ParameterMetaData.java @@ -40,64 +40,64 @@ package java.sql; /** * @since 1.4 */ -public interface ParameterMetaData +interface ParameterMetaData { - public static final int parameterNoNulls = 0; + int parameterNoNulls = 0; - public static final int parameterNullable = 1; + int parameterNullable = 1; - public static final int parameterNullableUnknown = 2; + int parameterNullableUnknown = 2; - public static final int parameterModeUnknown = 0; + int parameterModeUnknown = 0; - public static final int parameterModeIn = 1; + int parameterModeIn = 1; - public static final int parameterModeInOut = 2; + int parameterModeInOut = 2; - public static final int parameterModeOut = 4; + int parameterModeOut = 4; /** * @since 1.4 */ - public int getParameterCount() throws SQLException; + int getParameterCount() throws SQLException; /** * @since 1.4 */ - public int isNullable(int param) throws SQLException; + int isNullable(int param) throws SQLException; /** * @since 1.4 */ - public boolean isSigned(int param) throws SQLException; + boolean isSigned(int param) throws SQLException; /** * @since 1.4 */ - public int getPrecision(int param) throws SQLException; + int getPrecision(int param) throws SQLException; /** * @since 1.4 */ - public int getScale(int param) throws SQLException; + int getScale(int param) throws SQLException; /** * @since 1.4 */ - public int getParameterType(int param) throws SQLException; + int getParameterType(int param) throws SQLException; /** * @since 1.4 */ - public String getParameterTypeName(int param) throws SQLException; + String getParameterTypeName(int param) throws SQLException; /** * @since 1.4 */ - public String getParameterClassName(int param) throws SQLException; + String getParameterClassName(int param) throws SQLException; /** * @since 1.4 */ - public int getParameterMode(int param) throws SQLException; + int getParameterMode(int param) throws SQLException; } |