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

org.hibernate.jpa.TypedParameterValue Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha3
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.jpa;

import org.hibernate.metamodel.model.domain.AllowableParameterType;
import org.hibernate.type.Type;

/**
 * Can be used to bind query parameter values.  Allows to provide additional details about the
 * parameter value/binding.
 *
 * @author Steve Ebersole
 *
 * @deprecated (since 6.0) use {@link org.hibernate.query.TypedParameterValue} instead.
 */
@Deprecated
public class TypedParameterValue extends org.hibernate.query.TypedParameterValue {
	public TypedParameterValue(Type type, Object value) {
		super( (AllowableParameterType) type, value );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy