Class AttributeConversionInfo
java.lang.Object
org.hibernate.boot.model.internal.AttributeConversionInfo
Describes a conversion
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAttributeConversionInfo
(Convert convertAnnotation, org.hibernate.models.spi.AnnotationTarget source) AttributeConversionInfo
(Class<? extends AttributeConverter> converterClass, boolean conversionDisabled, String attributeName, org.hibernate.models.spi.AnnotationTarget source) -
Method Summary
Modifier and TypeMethodDescriptionThe name of the attribute to which the conversion applies.Class<? extends AttributeConverter<?,
?>> The converter implementation classorg.hibernate.models.spi.AnnotationTarget
The annotated elementboolean
Whether conversion is explicitly disabled for this attribute
-
Constructor Details
-
AttributeConversionInfo
public AttributeConversionInfo(Class<? extends AttributeConverter> converterClass, boolean conversionDisabled, String attributeName, org.hibernate.models.spi.AnnotationTarget source) -
AttributeConversionInfo
public AttributeConversionInfo(Convert convertAnnotation, org.hibernate.models.spi.AnnotationTarget source)
-
-
Method Details
-
getAttributeName
The name of the attribute to which the conversion applies.- See Also:
-
getConverterClass
The converter implementation class -
isConversionDisabled
public boolean isConversionDisabled()Whether conversion is explicitly disabled for this attribute -
getSource
public org.hibernate.models.spi.AnnotationTarget getSource()The annotated element
-