Class OracleEnumJdbcType

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

public class OracleEnumJdbcType extends Object implements JdbcType
Represents a named enum type on Oracle 23ai+.

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

 @JdbcTypeCode(SqlTypes.NAMED_ENUM)
 
See Also: