类 AbstractConverterDescriptor
- java.lang.Object
-
- org.hibernate.boot.model.convert.internal.AbstractConverterDescriptor
-
- 所有已实现的接口:
ConverterDescriptor
public abstract class AbstractConverterDescriptor extends Object implements ConverterDescriptor
- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 AbstractConverterDescriptor(Class<? extends javax.persistence.AttributeConverter> converterClass, Boolean forceAutoApply, ClassmateContext classmateContext)
-
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 JpaAttributeConvertercreateJpaAttributeConverter(JpaAttributeConverterCreationContext context)Factory for the runtime representation of the converterprotected abstract ManagedBean<? extends javax.persistence.AttributeConverter>createManagedBean(JpaAttributeConverterCreationContext context)Class<? extends javax.persistence.AttributeConverter>getAttributeConverterClass()The AttributeConverter classAutoApplicableConverterDescriptorgetAutoApplyDescriptor()Get the auto-apply checker for this converter.com.fasterxml.classmate.ResolvedTypegetDomainValueResolvedType()The resolved Classmate type descriptor for the conversion's domain typecom.fasterxml.classmate.ResolvedTypegetRelationalValueResolvedType()The resolved Classmate type descriptor for the conversion's relational type
-
-
-
构造器详细资料
-
AbstractConverterDescriptor
public AbstractConverterDescriptor(Class<? extends javax.persistence.AttributeConverter> converterClass, Boolean forceAutoApply, ClassmateContext classmateContext)
-
-
方法详细资料
-
getAttributeConverterClass
public Class<? extends javax.persistence.AttributeConverter> getAttributeConverterClass()
从接口复制的说明:ConverterDescriptorThe AttributeConverter class
-
getDomainValueResolvedType
public com.fasterxml.classmate.ResolvedType getDomainValueResolvedType()
从接口复制的说明:ConverterDescriptorThe resolved Classmate type descriptor for the conversion's domain type
-
getRelationalValueResolvedType
public com.fasterxml.classmate.ResolvedType getRelationalValueResolvedType()
从接口复制的说明:ConverterDescriptorThe resolved Classmate type descriptor for the conversion's relational type
-
getAutoApplyDescriptor
public AutoApplicableConverterDescriptor getAutoApplyDescriptor()
从接口复制的说明:ConverterDescriptorGet the auto-apply checker for this converter. Should never return `null` - preferAutoApplicableConverterDescriptorBypassedImpl.INSTANCEinstead.- 指定者:
getAutoApplyDescriptor在接口中ConverterDescriptor
-
createJpaAttributeConverter
public JpaAttributeConverter createJpaAttributeConverter(JpaAttributeConverterCreationContext context)
从接口复制的说明:ConverterDescriptorFactory for the runtime representation of the converter
-
createManagedBean
protected abstract ManagedBean<? extends javax.persistence.AttributeConverter> createManagedBean(JpaAttributeConverterCreationContext context)
-
-