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
Modifier and TypeMethodDescriptionThe name of the column this parameter "maps to"The JDBC mapping (type, etc.) for the parameterint
The position within the operation, starting at 1 per JDBCgetUsage()
How the parameter is used in the querydefault boolean
matches
(String columnName, ParameterUsage usage)
-
Method Details
-
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
-