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

org.hibernate.type.descriptor.sql.SqlTypeDescriptor Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.type.descriptor.sql;

import java.io.Serializable;

import org.hibernate.type.descriptor.ValueBinder;
import org.hibernate.type.descriptor.ValueExtractor;
import org.hibernate.type.descriptor.java.JavaTypeDescriptor;

/**
 * Descriptor for the SQL/JDBC side of a value mapping.
 * 

* NOTE : Implementations should be registered with the {@link SqlTypeDescriptor}. The built-in Hibernate * implementations register themselves on construction. * * @author Steve Ebersole */ public interface SqlTypeDescriptor extends Serializable { /** * Return the {@linkplain java.sql.Types JDBC type-code} for the column mapped by this type. * * @return typeCode The JDBC type-code */ public int getSqlType(); /** * Is this descriptor available for remapping? * * @return {@code true} indicates this descriptor can be remapped; otherwise, {@code false} * * @see org.hibernate.type.descriptor.WrapperOptions#remapSqlTypeDescriptor * @see org.hibernate.dialect.Dialect#remapSqlTypeDescriptor */ public boolean canBeRemapped(); /** * Get the binder (setting JDBC in-going parameter values) capable of handling values of the type described by the * passed descriptor. * * @param javaTypeDescriptor The descriptor describing the types of Java values to be bound * * @return The appropriate binder. */ public ValueBinder getBinder(JavaTypeDescriptor javaTypeDescriptor); /** * Get the extractor (pulling out-going values from JDBC objects) capable of handling values of the type described * by the passed descriptor. * * @param javaTypeDescriptor The descriptor describing the types of Java values to be extracted * * @return The appropriate extractor */ public ValueExtractor getExtractor(JavaTypeDescriptor javaTypeDescriptor); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy