Uses of Interface
org.hibernate.metamodel.model.convert.spi.EnumValueConverter
-
Packages that use EnumValueConverter Package Description org.hibernate.boot.model.process.internal org.hibernate.metamodel.model.convert.internal org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types. -
-
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
EnumeratedValueResolution. getValueConverter()
Constructors in org.hibernate.boot.model.process.internal with parameters of type EnumValueConverter Constructor Description EnumeratedValueResolution(CustomType<Object> enumTypeMapping, JavaType<E> domainJtd, JavaType<?> jdbcJtd, JdbcType jdbcType, EnumValueConverter<E,?> valueConverter)
-
Uses of EnumValueConverter in org.hibernate.metamodel.model.convert.internal
Classes in org.hibernate.metamodel.model.convert.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) -
Uses of EnumValueConverter in org.hibernate.type
Methods in org.hibernate.type that return EnumValueConverter Modifier and Type Method Description EnumValueConverter<T,?>
EnumType. getEnumValueConverter()
Constructors in org.hibernate.type with parameters of type EnumValueConverter Constructor Description EnumType(Class<T> enumClass, EnumValueConverter<T,?> enumValueConverter, TypeConfiguration typeConfiguration)
-