All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.query.QueryParameter Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * 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 .
 */
package org.hibernate.query;

import org.hibernate.Incubating;
import org.hibernate.type.Type;

/**
 * NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQM
 *
 * @author Steve Ebersole
 */
@Incubating
public interface QueryParameter extends javax.persistence.Parameter {
	/**
	 * Get the Hibernate Type associated with this parameter.
	 *
	 * @return The Hibernate Type.
	 */
	Type getHibernateType();

	int[] getSourceLocations();

	// todo : add a method indicating whether this parameter is valid for use in "parameter list binding"
	//		actually this already implemented in 6.0 code and I'm not going to mess with
	//		this in earlier versions
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy