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

org.hibernate.type.descriptor.spi.JdbcRecommendedSqlTypeMappingContext 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 http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.type.descriptor.spi;

import java.sql.Types;
import javax.persistence.EnumType;

import org.hibernate.type.spi.TypeConfiguration;

/**
 * More-or-less a parameter-object intended for use in determining the SQL/JDBC type recommended
 * by the JDBC spec (explicitly or implicitly) for a given Java type.
 *
 * @see org.hibernate.type.descriptor.java.BasicJavaDescriptor#getJdbcRecommendedSqlType
 *
 * @author Steve Ebersole
 */
public interface JdbcRecommendedSqlTypeMappingContext {
	/**
	 * Was nationalized character datatype requested for the given Java type?
	 *
	 * @return {@code true} if nationalized character datatype should be used; {@code false} otherwise.
	 */
	default boolean isNationalized() {
		return false;
	}

	/**
	 * Was LOB datatype requested for the given Java type?
	 *
	 * @return {@code true} if LOB datatype should be used; {@code false} otherwise.
	 */
	default boolean isLob() {
		return false;
	}

	/**
	 * For enum mappings, what style of storage was requested (name vs. ordinal)?
	 *
	 * @return The enum type.
	 */
	default EnumType getEnumeratedType() {
		return EnumType.ORDINAL;
	}

	/**
	 * When mapping a boolean type to the database what is the preferred SQL type code to use?
	 * 

* Specifically names the key into the * {@link org.hibernate.type.descriptor.sql.spi.SqlTypeDescriptorRegistry}. */ default int getPreferredSqlTypeCodeForBoolean() { return Types.BOOLEAN; } /** * Provides access to the TypeConfiguration for access to various type-system registries. */ TypeConfiguration getTypeConfiguration(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy