public class

CallParameterMetaData

extends Object
java.lang.Object
   ↳ org.springframework.jdbc.core.metadata.CallParameterMetaData

Class Overview

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

Summary

Public Constructors
CallParameterMetaData(String columnName, int columnType, int sqlType, String typeName, boolean nullable)
Constructor taking all the properties
Public Methods
String getParameterName()
Get the parameter name.
int getParameterType()
Get the parameter type.
int getSqlType()
Get the parameter SQL type.
String getTypeName()
Get the parameter type name.
boolean isNullable()
Get whether the parameter is nullable.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public CallParameterMetaData (String columnName, int columnType, int sqlType, String typeName, boolean nullable)

Constructor taking all the properties

Public Methods

public String getParameterName ()

Get the parameter name.

public int getParameterType ()

Get the parameter type.

public int getSqlType ()

Get the parameter SQL type.

public String getTypeName ()

Get the parameter type name.

public boolean isNullable ()

Get whether the parameter is nullable.