Class OracleOrdinalEnumJdbcType

java.lang.Object
org.hibernate.dialect.OracleEnumJdbcType
org.hibernate.dialect.OracleOrdinalEnumJdbcType
All Implemented Interfaces:
Serializable, JdbcType

public class OracleOrdinalEnumJdbcType extends OracleEnumJdbcType
Represents a named enum type on Oracle 23ai+.

Hibernate does not automatically use this for enums mapped as EnumType.ORDINAL, and instead this type must be explicitly requested using:

 @JdbcTypeCode(SqlTypes.NAMED_ORDINAL_ENUM)
 
See Also: