net.binis.codegen.hibernate.CodeEnumValueConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-generator-hibernate Show documentation
Show all versions of code-generator-hibernate Show documentation
Binis Code Generation Hibernate Extension
package net.binis.codegen.hibernate;
/*-
* #%L
* code-generator-hibernate
* %%
* Copyright (C) 2021 - 2022 Binis Belev
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import net.binis.codegen.objects.base.enumeration.CodeEnum;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.metamodel.model.convert.spi.BasicValueConverter;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import org.hibernate.Remove;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.sql.ast.tree.select.SelectStatement;
import org.hibernate.sql.exec.spi.JdbcOperation;
import org.hibernate.type.descriptor.java.EnumJavaType;
/**
* BasicValueConverter extension for enum-specific support
*
* @author Steve Ebersole
*/
public interface CodeEnumValueConverter extends BasicValueConverter {
@Override
CodeEnumJavaType getDomainJavaType();
int getJdbcTypeCode();
String toSqlLiteral(Object value);
/**
* @since 6.0
*
* @deprecated Added temporarily in support of dual SQL execution until
* fully migrated to {@link SelectStatement} and {@link JdbcOperation}
*/
@Remove
@Deprecated
void writeValue(
PreparedStatement statement,
O value,
int position,
SharedSessionContractImplementor session) throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy