Package org.hibernate.jpa.spi
Interface ParameterBind<T>
-
- Type Parameters:
T
-
public interface ParameterBind<T>
Represents the value currently bound to a particular (bindable) parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description jakarta.persistence.TemporalType
getSpecifiedTemporalType()
The temporal type that will be used to "interpret" Date-like values (if applicable).T
getValue()
Access the bound value
-
-
-
Method Detail
-
getValue
T getValue()
Access the bound value- Returns:
- The bound value
-
getSpecifiedTemporalType
jakarta.persistence.TemporalType getSpecifiedTemporalType()
The temporal type that will be used to "interpret" Date-like values (if applicable).- Returns:
- The temporal type, or
null
-
-