File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
hibernate-core/src/main/java/org/hibernate/type/descriptor/jdbc Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 99import java .sql .ResultSet ;
1010import java .sql .SQLException ;
1111
12- import org .hibernate .dialect .MySQLDialect ;
1312import org .hibernate .type .descriptor .ValueBinder ;
1413import org .hibernate .type .descriptor .ValueExtractor ;
1514import org .hibernate .type .descriptor .WrapperOptions ;
2625 * as {@link jakarta.persistence.EnumType#STRING}.
2726 *
2827 * @see org.hibernate.type.SqlTypes#ENUM
29- * @see MySQLDialect#getEnumTypeDeclaration(String, String[])
28+ * @see org.hibernate.dialect. MySQLDialect#getEnumTypeDeclaration(String, String[])
3029 *
3130 * @author Gavin King
3231 */
Original file line number Diff line number Diff line change 55package org .hibernate .type .descriptor .jdbc ;
66
77import org .hibernate .dialect .Dialect ;
8- import org .hibernate .dialect .type .H2JsonJdbcType ;
98import org .hibernate .metamodel .mapping .EmbeddableMappingType ;
109import org .hibernate .metamodel .spi .RuntimeModelCreationContext ;
1110import org .hibernate .sql .ast .spi .SqlAppender ;
1514 * '{@code ? format json}' write expression for H2.
1615 *
1716 * @author Marco Belladelli
18- * @deprecated Use {@link H2JsonJdbcType} instead
17+ * @deprecated Use {@link org.hibernate.dialect.type. H2JsonJdbcType} instead
1918 */
2019@ Deprecated (forRemoval = true , since = "6.5" )
2120public class H2FormatJsonJdbcType extends JsonJdbcType {
Original file line number Diff line number Diff line change 44 */
55package org .hibernate .type .descriptor .jdbc ;
66
7- import org .hibernate .dialect .MySQLDialect ;
8-
97import static org .hibernate .type .SqlTypes .ORDINAL_ENUM ;
108
119/**
1513 * as {@link jakarta.persistence.EnumType#ORDINAL}.
1614 *
1715 * @see org.hibernate.type.SqlTypes#ORDINAL_ENUM
18- * @see MySQLDialect#getEnumTypeDeclaration(String, String[])
16+ * @see org.hibernate.dialect. MySQLDialect#getEnumTypeDeclaration(String, String[])
1917 */
2018public class OrdinalEnumJdbcType extends EnumJdbcType {
2119
You can’t perform that action at this time.
0 commit comments