org.springframework.jdbc.core.metadata
Class TableParameterMetaData

java.lang.Object
  extended by org.springframework.jdbc.core.metadata.TableParameterMetaData

public class TableParameterMetaData
extends java.lang.Object

Holder of metadata for a specific parameter that is used for table processing.

Since:
2.5
Author:
Thomas Risberg

Field Summary
private  boolean nullable
           
private  java.lang.String parameterName
           
private  int sqlType
           
 
Constructor Summary
TableParameterMetaData(java.lang.String columnName, int sqlType, boolean nullable)
          Constructor taking all the properties.
 
Method Summary
 java.lang.String getParameterName()
          Get the parameter name.
 int getSqlType()
          Get the parameter SQL type.
 boolean isNullable()
          Get whether the parameter/column is nullable.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parameterName

private final java.lang.String parameterName

sqlType

private final int sqlType

nullable

private final boolean nullable
Constructor Detail

TableParameterMetaData

public TableParameterMetaData(java.lang.String columnName,
                              int sqlType,
                              boolean nullable)
Constructor taking all the properties.

Method Detail

getParameterName

public java.lang.String getParameterName()
Get the parameter name.


getSqlType

public int getSqlType()
Get the parameter SQL type.


isNullable

public boolean isNullable()
Get whether the parameter/column is nullable.