/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.procedure;
import javax.persistence.TemporalType;
import org.hibernate.query.spi.QueryParameterBinding;
Describes an input value binding for any IN/INOUT parameters.
/**
* Describes an input value binding for any IN/INOUT parameters.
*/
public interface ParameterBind<T> extends QueryParameterBinding<T> {
Retrieves the bound value.
Returns: The bound value.
/**
* Retrieves the bound value.
*
* @return The bound value.
*/
T getValue();
If <T>
represents a DATE/TIME type value, JPA usually allows specifying the particular parts of the DATE/TIME value to be bound. This value represents the particular part the user requested to be bound. Returns: The explicitly supplied TemporalType.
/**
* If {@code <T>} represents a DATE/TIME type value, JPA usually allows specifying the particular parts of
* the DATE/TIME value to be bound. This value represents the particular part the user requested to be bound.
*
* @return The explicitly supplied TemporalType.
*/
TemporalType getExplicitTemporalType();
}