Uses of Interface
org.hibernate.type.descriptor.converter.spi.EnumValueConverter
-
Packages that use EnumValueConverter Package Description org.hibernate.boot.model.process.internal org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.converter.internal Implements the SPI for basic-typed value conversions. -
-
Uses of EnumValueConverter in org.hibernate.boot.model.process.internal
Methods in org.hibernate.boot.model.process.internal that return EnumValueConverter Modifier and Type Method Description EnumValueConverter<E,R>
EnumeratedValueResolution. getValueConverter()
Constructors in org.hibernate.boot.model.process.internal with parameters of type EnumValueConverter Constructor Description EnumeratedValueResolution(JdbcType jdbcType, EnumValueConverter<E,R> valueConverter, MetadataBuildingContext context)
-
Uses of EnumValueConverter in org.hibernate.type
Methods in org.hibernate.type that return EnumValueConverter Modifier and Type Method Description EnumValueConverter<T,?>
EnumType. getEnumValueConverter()
Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.type with parameters of type EnumValueConverter Constructor Description EnumType(Class<T> enumClass, EnumValueConverter<T,?> enumValueConverter, TypeConfiguration typeConfiguration)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of EnumValueConverter in org.hibernate.type.descriptor.converter.internal
Classes in org.hibernate.type.descriptor.converter.internal that implement EnumValueConverter Modifier and Type Class Description class
NamedEnumValueConverter<E extends Enum<E>>
BasicValueConverter handling the conversion of an enum based on JPAEnumType.STRING
strategy (storing the name)class
OrdinalEnumValueConverter<E extends Enum<E>,N extends Number>
BasicValueConverter handling the conversion of an enum based on JPAEnumType.ORDINAL
strategy (storing the ordinal)
-