接口的使用
org.hibernate.usertype.UserType
-
使用UserType的程序包 程序包 说明 org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.internal org.hibernate.boot.model org.hibernate.boot.spi org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel.org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.usertype Interfaces for user-defined custom types. -
-
org.hibernate.boot中UserType的使用
参数类型为UserType的org.hibernate.boot中的方法 修饰符和类型 方法 说明 MetadataBuilderMetadataBuilder. applyBasicType(UserType type, String... keys)Register an additional or overridden custom type mapping. -
org.hibernate.boot.internal中UserType的使用
参数类型为UserType的org.hibernate.boot.internal中的方法 修饰符和类型 方法 说明 MetadataBuilderMetadataBuilderImpl. applyBasicType(UserType type, String... keys)voidMetadataBuilderImpl. contributeType(UserType type, String[] keys) -
org.hibernate.boot.model中UserType的使用
参数类型为UserType的org.hibernate.boot.model中的方法 修饰符和类型 方法 说明 voidTypeContributions. contributeType(UserType type, String... keys)已过时。(since 5.3) UseTypeContributions.contributeType(BasicType)instead. -
org.hibernate.boot.spi中UserType的使用
参数类型为UserType的org.hibernate.boot.spi中的方法 修饰符和类型 方法 说明 MetadataBuilderAbstractDelegatingMetadataBuilderImplementor. applyBasicType(UserType type, String... keys)参数类型为UserType的org.hibernate.boot.spi中的构造器 构造器 说明 BasicTypeRegistration(UserType type, String[] keys) -
org.hibernate.cfg中UserType的使用
参数类型为UserType的org.hibernate.cfg中的方法 修饰符和类型 方法 说明 ConfigurationConfiguration. registerTypeOverride(UserType type, String[] keys) -
org.hibernate.type中UserType的使用
实现UserType的org.hibernate.type中的类 修饰符和类型 类 说明 classEnumType<T extends Enum>Value type mapper for enumerations.返回UserType的org.hibernate.type中的方法 修饰符和类型 方法 说明 UserTypeCustomType. getUserType()参数类型为UserType的org.hibernate.type中的方法 修饰符和类型 方法 说明 voidBasicTypeRegistry. register(UserType type, String[] keys)voidTypeResolver. registerTypeOverride(UserType type, String[] keys)已过时。类型变量类型为UserType的org.hibernate.type中的方法参数 修饰符和类型 方法 说明 CustomTypeTypeFactory. custom(Class<UserType> typeClass, Properties parameters)已过时。static CustomTypeTypeFactory. custom(Class<UserType> typeClass, Properties parameters, TypeFactory.TypeScope scope)已过时。Only for use temporary use byHibernate参数类型为UserType的org.hibernate.type中的构造器 构造器 说明 CustomType(UserType userType)CustomType(UserType userType, String[] registrationKeys) -
org.hibernate.usertype中UserType的使用
org.hibernate.usertype中UserType的子接口 修饰符和类型 接口 说明 interfaceEnhancedUserTypeA custom type that may function as an identifier or discriminator typeinterfaceUserVersionTypeA user type that may be used for a version property
-