Class JdbcValueDescriptorImpl
- java.lang.Object
-
- org.hibernate.engine.jdbc.mutation.internal.JdbcValueDescriptorImpl
-
- All Implemented Interfaces:
JdbcValueDescriptor
public class JdbcValueDescriptorImpl extends Object implements JdbcValueDescriptor
Standard JdbcValueDescriptor implementation
-
-
Constructor Summary
Constructors Constructor Description JdbcValueDescriptorImpl(JdbcParameterBinder jdbcParameterBinder, int jdbcPosition)JdbcValueDescriptorImpl(ColumnValueParameter columnValueParameter, int jdbcPosition)
-
Method Summary
All Methods Instance Methods Concrete 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 query-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.model.jdbc.JdbcValueDescriptor
matches
-
-
-
-
Constructor Detail
-
JdbcValueDescriptorImpl
public JdbcValueDescriptorImpl(JdbcParameterBinder jdbcParameterBinder, int jdbcPosition)
-
JdbcValueDescriptorImpl
public JdbcValueDescriptorImpl(ColumnValueParameter columnValueParameter, int jdbcPosition)
-
-
Method Detail
-
getColumnName
public String getColumnName()
Description copied from interface:JdbcValueDescriptorThe name of the column this parameter "maps to"- Specified by:
getColumnNamein interfaceJdbcValueDescriptor
-
getUsage
public ParameterUsage getUsage()
Description copied from interface:JdbcValueDescriptorHow the parameter is used in the query- Specified by:
getUsagein interfaceJdbcValueDescriptor
-
getJdbcPosition
public int getJdbcPosition()
Description copied from interface:JdbcValueDescriptorThe position within the operation, starting at 1 per JDBC- Specified by:
getJdbcPositionin interfaceJdbcValueDescriptor
-
getJdbcMapping
public JdbcMapping getJdbcMapping()
Description copied from interface:JdbcValueDescriptorThe JDBC mapping (type, etc.) for the parameter- Specified by:
getJdbcMappingin interfaceJdbcValueDescriptor
-
-