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 boolean
equals(Object o)
String
getColumnName()
The name of the column to which this value is "bound"int
getPosition()
The JDBC parameter positionObject
getValue()
The value to be bound to the parameter<T> ValueBinder<T>
getValueBinder()
The binder to be used in binding this valueJdbcValueDescriptor
getValueDescriptor()
int
hashCode()
String
toString()
-
-
-
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
-
-