Package org.hibernate.sql.model.jdbc
Interface JdbcValueDescriptor
-
- All Known Implementing Classes:
JdbcValueDescriptorImpl
public interface JdbcValueDescriptor
Descriptor for JDBC value within an operation.- Implementation Specification:
- Used while binding values to JDBC Statements
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description String
getColumnName()
The name of the column this parameter "maps to"JdbcMapping
getJdbcMapping()
The JDBC mapping (type, etc.) for the parameterint
getJdbcPosition()
The position within the operation, starting at 1 per JDBCParameterUsage
getUsage()
How the parameter is used in the querydefault boolean
matches(String columnName, ParameterUsage usage)
-
-
-
Method Detail
-
getColumnName
String getColumnName()
The name of the column this parameter "maps to"
-
getUsage
ParameterUsage getUsage()
How the parameter is used in the query
-
getJdbcPosition
int getJdbcPosition()
The position within the operation, starting at 1 per JDBC
-
getJdbcMapping
JdbcMapping getJdbcMapping()
The JDBC mapping (type, etc.) for the parameter
-
matches
default boolean matches(String columnName, ParameterUsage usage)
-
-