Package org.hibernate.boot.models.spi
Class ConversionRegistration
java.lang.Object
org.hibernate.boot.models.spi.ConversionRegistration
A registered conversion.
- See Also:
- API Note:
- Largely a copy of RegisteredConversion to avoid early creation of ConverterDescriptor. Technically the conversion from ClassDetails to Class should be fine since conversions are only valid for basic types which we will never enhance.
-
Constructor Summary
ConstructorsConstructorDescriptionConversionRegistration
(Class<?> explicitDomainType, Class<? extends AttributeConverter<?, ?>> converterType, boolean autoApply, org.hibernate.models.spi.AnnotationDescriptor<? extends Annotation> source) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Class<? extends AttributeConverter<?,
?>> Class<?>
org.hibernate.models.spi.AnnotationDescriptor<? extends Annotation>
int
hashCode()
boolean
makeConverterDescriptor
(ClassmateContext classmateContext) toString()
-
Constructor Details
-
ConversionRegistration
public ConversionRegistration(Class<?> explicitDomainType, Class<? extends AttributeConverter<?, ?>> converterType, boolean autoApply, org.hibernate.models.spi.AnnotationDescriptor<? extends Annotation> source)
-
-
Method Details