Package org.hibernate.sql.model.jdbc
Interface JdbcValueDescriptor
-
- All Known Implementing Classes:
JdbcValueDescriptorImpl
public interface JdbcValueDescriptorDescriptor 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 StringgetColumnName()The name of the column this parameter "maps to"JdbcMappinggetJdbcMapping()The JDBC mapping (type, etc.) for the parameterintgetJdbcPosition()The position within the operation, starting at 1 per JDBCParameterUsagegetUsage()How the parameter is used in the querydefault booleanmatches(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)
-
-