Uses of Interface
org.hibernate.usertype.UserType
-
Packages that use UserType Package Description org.hibernate.annotations Package containing all Hibernate's specific annotations.org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.model Package defining Hibernate's boot-time metamodel, which is an incrementally built understanding of the application's domain model (its entities, attributes, etc).org.hibernate.boot.spi org.hibernate.cfg org.hibernate.mapping org.hibernate.type org.hibernate.usertype -
-
Uses of UserType in org.hibernate.annotations
Methods in org.hibernate.annotations that return types with arguments of type UserType Modifier and Type Method Description Class<? extends UserType<?>>value()The custom type implementor classClass<? extends UserType<?>>value()The custom type implementor classClass<? extends UserType<?>>value()The implementation class which implementsUserType. -
Uses of UserType in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type UserType Modifier and Type Method Description MetadataBuilderMetadataBuilder. applyBasicType(UserType<?> type, String... keys)Register an additional or overridden custom type mapping. -
Uses of UserType in org.hibernate.boot.model
Methods in org.hibernate.boot.model with parameters of type UserType Modifier and Type Method Description default voidTypeContributions. contributeType(UserType<?> type, String... keys)Deprecated.UseTypeContributions.contributeType(BasicType)instead.default <T> voidTypeContributions. contributeType(UserType<T> type)Registers a UserType as the implicit (auto-applied) type for values of typereturnedClass() -
Uses of UserType in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type UserType Modifier and Type Method Description MetadataBuilderAbstractDelegatingMetadataBuilderImplementor. applyBasicType(UserType<?> type, String... keys)Constructors in org.hibernate.boot.spi with parameters of type UserType Constructor Description BasicTypeRegistration(UserType<?> type, String[] keys, TypeConfiguration typeConfiguration) -
Uses of UserType in org.hibernate.cfg
Methods in org.hibernate.cfg with parameters of type UserType Modifier and Type Method Description ConfigurationConfiguration. registerTypeOverride(UserType<?> type, String[] keys) -
Uses of UserType in org.hibernate.mapping
Methods in org.hibernate.mapping with type parameters of type UserType Modifier and Type Method Description <T extends UserType<?>>
voidBasicValue. setExplicitCustomType(Class<T> explicitCustomType) -
Uses of UserType in org.hibernate.type
Classes in org.hibernate.type that implement UserType Modifier and Type Class Description classEnumType<T extends Enum<T>>Value type mapper for enumerations.Methods in org.hibernate.type that return UserType Modifier and Type Method Description UserType<J>CustomType. getUserType()Methods in org.hibernate.type with parameters of type UserType Modifier and Type Method Description <T> CustomType<T>BasicTypeRegistry. register(UserType<T> type, String... keys)Constructors in org.hibernate.type with parameters of type UserType Constructor Description CustomType(UserType<J> userType, String[] registrationKeys, TypeConfiguration typeConfiguration)CustomType(UserType<J> userType, TypeConfiguration typeConfiguration) -
Uses of UserType in org.hibernate.usertype
Subinterfaces of UserType in org.hibernate.usertype Modifier and Type Interface Description interfaceEnhancedUserType<J>A custom type that may function as an identifier or discriminator typeinterfaceUserVersionType<T>A user type that may be used for a version propertyClasses in org.hibernate.usertype that implement UserType Modifier and Type Class Description classBaseUserTypeSupport<T>classStaticUserTypeSupport<T>classUserTypeLegacyBridgeConvenienceUserTypeimplementation which mimics the legacy@Typeannotation which was based on thehbm.xmlmapping's string-based type support.classUserTypeSupport<T>
-