Class Binding
- java.lang.Object
-
- org.hibernate.engine.jdbc.mutation.spi.Binding
-
public class Binding extends Object
-
-
Constructor Summary
Constructors Constructor Description Binding(String columnName, Object value, JdbcValueDescriptor valueDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetColumnName()The name of the column to which this value is "bound"intgetPosition()The JDBC parameter positionObjectgetValue()The value to be bound to the parameter<T> ValueBinder<T>getValueBinder()The binder to be used in binding this valueJdbcValueDescriptorgetValueDescriptor()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
Binding
public Binding(String columnName, Object value, JdbcValueDescriptor valueDescriptor)
-
-
Method Detail
-
getColumnName
public String getColumnName()
The name of the column to which this value is "bound"
-
getValue
public Object getValue()
The value to be bound to the parameter
-
getValueDescriptor
public JdbcValueDescriptor getValueDescriptor()
-
getValueBinder
public <T> ValueBinder<T> getValueBinder()
The binder to be used in binding this value
-
getPosition
public int getPosition()
The JDBC parameter position
-
-