Uses of Interface
org.hibernate.type.Type
Packages that use Type
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.A range of SPIs allowing integration with—and customization of—the process of building metadata.
Support for bytecode interceptor implementations.
Internal implementations and support for second-level caching.
This package defines the SPI of a framework for lazy-initializing
and state-tracking collection wrappers.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
This package defines a default set of event listeners that implement
the default behaviors of Hibernate session operations.
This package and its subpackages, especially
org.hibernate.id.enhanced,
contain the built-in id generators, all of which implement either
IdentifierGenerator or
PostInsertIdentifierGenerator.Enhanced/improved versions of table and sequence based identifier generators
targeting portability and unified configuration.
Defines a service for creating
id generators.
Implementation of the SPI for id generator factories.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate.Internal utility classes
This package defines the Hibernate configuration-time mapping model.
This package defines an API for accessing details about model mapping.
Defines the runtime mapping metamodel, which describes the mapping
of the application's domain model parts (entities, attributes) to
relational database objects (tables, columns).
This package abstracts persistence mechanisms for collections.
This package abstracts persistence mechanisms for entities.
Contains some functions for pretty-printing things for exception and log messages.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
Most contracts here have been replaced by the new runtime
mapping model.
A Hibernate
Type is a strategy for mapping a Java
property type to a JDBC type or types.Implements the SPI for basic-typed value conversions.
An API for working with abstract families of DDL types
parameterized by varying length, precision, and scale.
Includes several general-purpose implementations of
DdlType.Defines a registry for
DdlTypes.Defines a registry for Hibernate
Types.-
Uses of Type in org.hibernate
Methods in org.hibernate that return TypeModifier and TypeMethodDescriptionCustomEntityDirtinessStrategy.AttributeInformation.getType()Get the mapping type of this attribute.Methods in org.hibernate with parameters of type TypeModifier and TypeMethodDescriptiondefault int[]Interceptor.findDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) Deprecated.default int[]Interceptor.findDirty(Object entity, Object id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) Called fromflush().default voidInterceptor.onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) Deprecated.default voidInterceptor.onDelete(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) Deprecated.default voidCalled before a record is deleted by aStatelessSession.default booleanInterceptor.onFlushDirty(Object entity, Serializable id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) default booleanInterceptor.onFlushDirty(Object entity, Object id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) Called when an object is detected to be dirty, during a flush.default voidInterceptor.onInsert(Object entity, Object id, Object[] state, String[] propertyNames, Type[] propertyTypes) Called before a record is inserted by aStatelessSession.default booleanInterceptor.onLoad(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) Deprecated.default booleanCalled just before an object is initialized.default booleanInterceptor.onPersist(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) Called before an object is made persistent by a stateful session.default voidInterceptor.onRemove(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) Called before an object is removed by a stateful session.default booleanInterceptor.onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) Deprecated.default booleandefault voidInterceptor.onUpdate(Object entity, Object id, Object[] state, String[] propertyNames, Type[] propertyTypes) Called before a record is updated by aStatelessSession.default voidInterceptor.onUpsert(Object entity, Object id, Object[] state, String[] propertyNames, Type[] propertyTypes) Called before a record is upserted by aStatelessSession. -
Uses of Type in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return TypeModifier and TypeMethodDescriptionInFlightMetadataCollectorImpl.getIdentifierType(String entityName) MetadataImpl.getIdentifierType(String entityName) InFlightMetadataCollectorImpl.getReferencedPropertyType(String entityName, String propertyName) MetadataImpl.getReferencedPropertyType(String entityName, String propertyName) -
Uses of Type in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return TypeModifier and TypeMethodDescriptionAbstractDelegatingMetadata.getIdentifierType(String className) AbstractDelegatingMetadata.getReferencedPropertyType(String className, String propertyName) -
Uses of Type in org.hibernate.bytecode.enhance.spi.interceptor
Methods in org.hibernate.bytecode.enhance.spi.interceptor that return Type -
Uses of Type in org.hibernate.cache.internal
Constructors in org.hibernate.cache.internal with parameters of type TypeModifierConstructorDescriptionBasicCacheKeyImplementation(Object originalId, Serializable disassembledKey, Type type, String entityOrRoleName) Being an internal contract the arguments are not being checked.CacheKeyImplementation(Object id, Serializable disassembledKey, Type type, String entityOrRoleName, String tenantId) Construct a new key for a collection or entity instance. -
Uses of Type in org.hibernate.collection.spi
Methods in org.hibernate.collection.spi with parameters of type TypeModifier and TypeMethodDescriptionprotected final EAbstractPersistentCollection.AbstractValueDelayedOperation.getReplacement(Type type, Object current, Map<Object, Object> copyCache) booleanPersistentArrayHolder.needsInserting(Object entry, int i, Type elemType) booleanPersistentBag.needsInserting(Object entry, int i, Type elemType) booleanPersistentCollection.needsInserting(Object entry, int i, Type elemType) Do we need to insert this element?booleanPersistentIdentifierBag.needsInserting(Object entry, int i, Type elemType) booleanPersistentList.needsInserting(Object entry, int i, Type elemType) booleanPersistentMap.needsInserting(Object entry, int i, Type elemType) booleanPersistentSet.needsInserting(Object entry, int i, Type elemType) booleanPersistentArrayHolder.needsUpdating(Object entry, int i, Type elemType) booleanPersistentBag.needsUpdating(Object entry, int i, Type elemType) booleanPersistentCollection.needsUpdating(Object entry, int i, Type elemType) Do we need to update this element?booleanPersistentIdentifierBag.needsUpdating(Object entry, int i, Type elemType) booleanPersistentList.needsUpdating(Object entry, int i, Type elemType) booleanPersistentMap.needsUpdating(Object entry, int i, Type elemType) booleanPersistentSet.needsUpdating(Object entry, int i, Type elemType) -
Uses of Type in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return TypeModifier and TypeMethodDescriptionMapping.getIdentifierType(String className) Deprecated.SessionFactoryDelegatingImpl.getIdentifierType(String className) Mapping.getReferencedPropertyType(String className, String propertyName) Deprecated.SessionFactoryDelegatingImpl.getReferencedPropertyType(String className, String propertyName) TypedValue.getType()Methods in org.hibernate.engine.spi with parameters of type TypeModifier and TypeMethodDescriptionstatic intEntityUniqueKey.generateHashCode(String entityName, String uniqueKeyName, Type keyType, Object key, SessionFactoryImplementor factory) default voidCascadingAction.noCascade(EventSource session, Object parent, EntityPersister persister, Type propertyType, int propertyIndex) Deprecated, for removal: This API element is subject to removal in a future version.No longer usedConstructors in org.hibernate.engine.spi with parameters of type TypeModifierConstructorDescriptionEntityUniqueKey(String entityName, String uniqueKeyName, Object key, Type keyType, SessionFactoryImplementor factory) TypedValue(Type type, Object value) -
Uses of Type in org.hibernate.envers.configuration.internal.metadata
Methods in org.hibernate.envers.configuration.internal.metadata with parameters of type TypeModifier and TypeMethodDescriptionprotected voidAbstractMetadataGenerator.throwUnsupportedTypeException(Type type, String entityName, String propertyName) -
Uses of Type in org.hibernate.envers.configuration.internal.metadata.reader
Methods in org.hibernate.envers.configuration.internal.metadata.reader that return TypeModifier and TypeMethodDescriptionPropertyAuditingData.getPropertyType()PropertyAuditingData.getVirtualPropertyType()Methods in org.hibernate.envers.configuration.internal.metadata.reader with parameters of type TypeModifier and TypeMethodDescriptionvoidPropertyAuditingData.setPropertyType(Type propertyType) voidPropertyAuditingData.setVirtualPropertyType(Type virtualPropertyType) -
Uses of Type in org.hibernate.envers.enhanced
Methods in org.hibernate.envers.enhanced with parameters of type TypeModifier and TypeMethodDescriptionprotected DatabaseStructureOrderedSequenceGenerator.buildSequenceStructure(Type type, Properties params, JdbcEnvironment jdbcEnvironment, QualifiedName sequenceName, int initialValue, int incrementSize) -
Uses of Type in org.hibernate.envers.internal.entities
Methods in org.hibernate.envers.internal.entities that return TypeMethods in org.hibernate.envers.internal.entities with parameters of type TypeModifier and TypeMethodDescriptionstatic PropertyDataPropertyData.forProperty(String propertyName, Type propertyType) Constructors in org.hibernate.envers.internal.entities with parameters of type TypeModifierConstructorDescriptionPropertyData(String name, String beanName, String accessType, boolean usingModifiedFlag, String modifiedFlagName, boolean synthetic, Type propertyType, Class<?> virtualReturnClass, PropertyAccessStrategy propertyAccessStrategy) PropertyData(String name, String beanName, String accessType, boolean usingModifiedFlag, String modifiedFlagName, boolean synthetic, Type propertyType, PropertyAccessStrategy propertyAccessStrategy) PropertyData(String name, String beanName, String accessType, Type propertyType) -
Uses of Type in org.hibernate.event.internal
Methods in org.hibernate.event.internal with parameters of type TypeModifier and TypeMethodDescriptionvoidAbstractVisitor.processEntityPropertyValues(Object[] values, Type[] types) Dispatch each property value to processValue().protected voidWrapVisitor.processValue(int i, Object[] values, Type[] types) protected booleanAbstractSaveEventListener.visitCollectionsBeforeSave(Object entity, Object id, Object[] values, Type[] types, EventSource source) protected booleanDefaultReplicateEventListener.visitCollectionsBeforeSave(Object entity, Object id, Object[] values, Type[] types, EventSource source) Deprecated. -
Uses of Type in org.hibernate.id
Methods in org.hibernate.id that return TypeMethods in org.hibernate.id with parameters of type TypeModifier and TypeMethodDescriptionvoidAssigned.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) voidConfigurable.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Configure this instance, given the value of parameters specified by the user as XML<param>elements and@Parameterannotations.voidForeignGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Deprecated, for removal: This API element is subject to removal in a future version.default voidIdentifierGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Configure this instance, given the value of parameters specified by the user as<param>elements.voidIncrementGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) default voidPostInsertIdentifierGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Noop default implementation.voidSelectGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) voidUUIDGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Deprecated.voidUUIDHexGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) Deprecated. -
Uses of Type in org.hibernate.id.enhanced
Methods in org.hibernate.id.enhanced that return TypeModifier and TypeMethodDescriptionSequenceStyleGenerator.getIdentifierType()Getter for property 'identifierType'.final TypeTableGenerator.getIdentifierType()Type mapping for the identifier.Methods in org.hibernate.id.enhanced with parameters of type TypeModifier and TypeMethodDescriptionprotected DatabaseStructureSequenceStyleGenerator.buildDatabaseStructure(Type type, Properties params, JdbcEnvironment jdbcEnvironment, boolean forceTableUse, QualifiedName sequenceName, int initialValue, int incrementSize) Build the database structure.protected DatabaseStructureSequenceStyleGenerator.buildSequenceStructure(Type type, Properties params, JdbcEnvironment jdbcEnvironment, QualifiedName sequenceName, int initialValue, int incrementSize) protected DatabaseStructureSequenceStyleGenerator.buildTableStructure(Type type, Properties params, JdbcEnvironment jdbcEnvironment, QualifiedName sequenceName, int initialValue, int incrementSize) voidSequenceStyleGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) voidTableGenerator.configure(Type type, Properties parameters, ServiceRegistry serviceRegistry) -
Uses of Type in org.hibernate.id.factory
Methods in org.hibernate.id.factory with parameters of type TypeModifier and TypeMethodDescriptiondefault GeneratorIdentifierGeneratorFactory.createIdentifierGenerator(String strategy, Type type, Properties parameters) IdentifierGeneratorFactory.createIdentifierGenerator(String strategy, Type type, GeneratorCreationContext creationContext, Properties parameters) -
Uses of Type in org.hibernate.id.factory.internal
Methods in org.hibernate.id.factory.internal with parameters of type TypeModifier and TypeMethodDescriptionStandardIdentifierGeneratorFactory.createIdentifierGenerator(String strategy, Type type, GeneratorCreationContext creationContext, Properties parameters) Deprecated. -
Uses of Type in org.hibernate.internal
Methods in org.hibernate.internal that return TypeModifier and TypeMethodDescriptionSessionFactoryImpl.getIdentifierType(String className) SessionFactoryImpl.getReferencedPropertyType(String className, String propertyName) Methods in org.hibernate.internal with parameters of type TypeModifier and TypeMethodDescriptionint[]EmptyInterceptor.findDirty(Object entity, Object id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) voidEmptyInterceptor.onDelete(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) booleanEmptyInterceptor.onFlushDirty(Object entity, Object id, Object[] currentState, Object[] previousState, String[] propertyNames, Type[] types) booleanEmptyInterceptor.onLoad(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) booleanEmptyInterceptor.onSave(Object entity, Object id, Object[] state, String[] propertyNames, Type[] types) voidCoreMessageLogger.typeRegistrationKeyOverridesPrevious(String key, Type old) -
Uses of Type in org.hibernate.internal.util
Methods in org.hibernate.internal.util with parameters of type TypeModifier and TypeMethodDescriptionstatic Constructor<?>ReflectHelper.getConstructor(Class<?> clazz, Type[] types) Deprecated, for removal: This API element is subject to removal in a future version.no longer used, since we moved away from theTypeinterface -
Uses of Type in org.hibernate.internal.util.collections
Fields in org.hibernate.internal.util.collections declared as TypeMethods in org.hibernate.internal.util.collections that return TypeMethod parameters in org.hibernate.internal.util.collections with type arguments of type Type -
Uses of Type in org.hibernate.mapping
Methods in org.hibernate.mapping that return TypeModifier and TypeMethodDescriptionAny.KeyValue.getType()Any.MetaValue.getType()BasicValue.getType()Collection.getType()DependantValue.getType()ManyToOne.getType()OneToMany.getType()OneToOne.getType()Property.getType()Value.getType()Methods in org.hibernate.mapping with parameters of type TypeModifier and TypeMethodDescriptionstatic AnyTypeMappingHelper.anyMapping(Type metaType, Type identifierType, Map<Object, String> metaValueToEntityNameMap, boolean lazy, MetadataBuildingContext buildingContext) -
Uses of Type in org.hibernate.metadata
Methods in org.hibernate.metadata that return TypeModifier and TypeMethodDescriptionCollectionMetadata.getElementType()Deprecated.The collection element typeClassMetadata.getIdentifierType()Deprecated.Get the identifier Hibernate typeCollectionMetadata.getIndexType()Deprecated.The collection index type (or null if the collection has no index)CollectionMetadata.getKeyType()Deprecated.The collection key typeClassMetadata.getPropertyType(String propertyName) Deprecated.Get the type of a particular (named) propertyType[]ClassMetadata.getPropertyTypes()Deprecated.Get the Hibernate types of the class properties -
Uses of Type in org.hibernate.metamodel.mapping
Subinterfaces of Type in org.hibernate.metamodel.mappingModifier and TypeInterfaceDescriptioninterfaceUnion ofConvertedBasicTypeandBasicDomainTypecapabilities. -
Uses of Type in org.hibernate.metamodel.mapping.internal
Classes in org.hibernate.metamodel.mapping.internal that implement TypeModifier and TypeClassDescriptionclassSpecialization of ConvertedBasicTypeImpl to expose access to theDiscriminatorTypeImpl.underlyingJdbcMappingof this discriminator - the bit that handles the relationship between the relational JavaType and the JdbcTypeMethods in org.hibernate.metamodel.mapping.internal with parameters of type TypeModifier and TypeMethodDescriptionstatic voidToOneAttributeMapping.addPrefixedPropertyNames(Set<String> targetKeyPropertyNames, String prefix, Type type, SessionFactoryImplementor factory) static voidToOneAttributeMapping.addPrefixedPropertyPaths(Set<String> targetKeyPropertyNames, String prefix, Type type, SessionFactoryImplementor factory) voidprotected static AttributeMetadataMappingModelCreationHelper.getAttributeMetadata(Property bootProperty, Type attrType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, MappingModelCreationProcess creationProcess) -
Uses of Type in org.hibernate.persister.collection
Fields in org.hibernate.persister.collection declared as TypeModifier and TypeFieldDescriptionprotected final TypeAbstractCollectionPersister.elementTypeDeprecated.Methods in org.hibernate.persister.collection that return TypeModifier and TypeMethodDescriptionAbstractCollectionPersister.getElementType()CollectionPersister.getElementType()Deprecated, for removal: This API element is subject to removal in a future version.Hibernate is moving away fromType.AbstractCollectionPersister.getIdentifierType()CollectionPersister.getIdentifierType()Deprecated, for removal: This API element is subject to removal in a future version.Hibernate is moving away fromType.AbstractCollectionPersister.getIndexType()CollectionPersister.getIndexType()Deprecated, for removal: This API element is subject to removal in a future version.Hibernate is moving away fromType.AbstractCollectionPersister.getKeyType()CollectionPersister.getKeyType()Deprecated, for removal: This API element is subject to removal in a future version.Hibernate is moving away fromType.CompositeElementPropertyMapping.getType()Deprecated, for removal: This API element is subject to removal in a future version.ElementPropertyMapping.getType()Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.persister.collection with parameters of type TypeModifierConstructorDescriptionElementPropertyMapping(String[] elementColumns, Type type) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Type in org.hibernate.persister.entity
Classes in org.hibernate.persister.entity that implement TypeModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version.The functionality of DiscriminatorType,DiscriminatorMetadataandMetaTypehave been consolidated intoEntityDiscriminatorMappingandDiscriminatorConverterMethods in org.hibernate.persister.entity that return TypeModifier and TypeMethodDescriptionLoadable.getDiscriminatorType()Deprecated, for removal: This API element is subject to removal in a future version.Get the discriminator typeAbstractEntityPersister.getIdentifierType()EntityPersister.getIdentifierType()Get the identifier typeAbstractEntityPersister.getPropertyType(String propertyName) Deprecated.by the supertypesEntityPersister.getPropertyType(String propertyName) Deprecated, for removal: This API element is subject to removal in a future version.UniqueKeyEntry.getPropertyType()Type[]AbstractEntityPersister.getPropertyTypes()Type[]EntityPersister.getPropertyTypes()Get the Hibernate types of the class propertiesDiscriminatorMetadata.getResolutionType()Deprecated, for removal: This API element is subject to removal in a future version.Get the type used to resolve the actual discriminator value.AbstractEntityPersister.getSubclassPropertyType(int i) OuterJoinLoadable.getSubclassPropertyType(int i) Deprecated, for removal: This API element is subject to removal in a future version.Get the type of the numbered property of the class or a subclass.protected Type[]AbstractEntityPersister.getSubclassPropertyTypeClosure()AbstractEntityPersister.getType()SQLLoadable.getType()Deprecated, for removal: This API element is subject to removal in a future version.Get the typeGiven a component path expression, get the type of the propertyDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Given a component path expression, get the type of the propertyMethods in org.hibernate.persister.entity with parameters of type TypeModifier and TypeMethodDescriptionprotected voidAbstractPropertyMapping.addPropertyPath(String path, Type type, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory) Deprecated, for removal: This API element is subject to removal in a future version.protected voidAbstractPropertyMapping.initPropertyPaths(String path, Type type, String[] columns, String[] columnReaders, String[] columnReaderTemplates, String[] formulaTemplates, Metadata factory) Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.persister.entity with parameters of type TypeModifierConstructorDescriptionUniqueKeyEntry(String uniqueKeyName, int stateArrayPosition, Type propertyType) -
Uses of Type in org.hibernate.pretty
Methods in org.hibernate.pretty with parameters of type TypeModifier and TypeMethodDescriptionstatic StringMessageHelper.infoString(@Nullable EntityPersister persister, @Nullable Object id, Type identifierType, SessionFactoryImplementor factory) Generate an info message string relating to a particular entity,. -
Uses of Type in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return TypeModifier and TypeMethodDescriptionQueryParameterListBinding.getBindType()Get the Type currently associated with this binding. -
Uses of Type in org.hibernate.sql.results.graph.collection.internal
Fields in org.hibernate.sql.results.graph.collection.internal declared as TypeModifier and TypeFieldDescriptionprotected final @Nullable TypeAbstractCollectionInitializer.keyTypeForEqualsHashCode -
Uses of Type in org.hibernate.sql.results.graph.entity.internal
Fields in org.hibernate.sql.results.graph.entity.internal declared as TypeModifier and TypeFieldDescriptionprotected final TypeBatchEntitySelectFetchInitializer.referencedModelPartTypeprotected final Type[]BatchEntityInsideEmbeddableSelectFetchInitializer.rootEmbeddablePropertyTypesprotected final Type[]EntityInitializerImpl.EntityInitializerData.uniqueKeyPropertyTypesMethods in org.hibernate.sql.results.graph.entity.internal that return TypeModifier and TypeMethodDescriptionprotected Type[]BatchEntityInsideEmbeddableSelectFetchInitializer.getParentEntityAttributeTypes(String attributeName) protected Type[]EntityInitializerImpl.getParentEntityAttributeTypes(String attributeName) Methods in org.hibernate.sql.results.graph.entity.internal with parameters of type TypeModifier and TypeMethodDescriptionprotected voidBatchEntityInsideEmbeddableSelectFetchInitializer.initializeAttributeType(Type[] attributeTypes, EntityPersister entityDescriptor, String attributeName) protected voidEntityInitializerImpl.initializeAttributeType(Type[] attributeTypes, EntityPersister entityDescriptor, String attributeName) -
Uses of Type in org.hibernate.tuple
Methods in org.hibernate.tuple that return TypeModifier and TypeMethodDescriptionAbstractAttribute.getType()Deprecated, for removal: This API element is subject to removal in a future version.Attribute.getType()Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.tuple with parameters of type TypeModifierConstructorDescriptionprotectedAbstractAttribute(String attributeName, Type attributeType) Deprecated, for removal: This API element is subject to removal in a future version.protectedAbstractNonIdentifierAttribute(AttributeSource source, SessionFactoryImplementor sessionFactory, int attributeNumber, String attributeName, Type attributeType, BaselineAttributeInformation attributeInformation) Deprecated, for removal: This API element is subject to removal in a future version.IdentifierProperty(String name, Type type, boolean embedded, Generator identifierGenerator) Deprecated, for removal: This API element is subject to removal in a future version.Construct a non-virtual identifier property.IdentifierProperty(Type type, boolean embedded, boolean hasIdentifierMapper, Generator identifierGenerator) Deprecated, for removal: This API element is subject to removal in a future version.Construct a virtual IdentifierProperty.StandardProperty(String name, Type type, boolean lazy, boolean insertable, boolean updateable, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode) Deprecated, for removal: This API element is subject to removal in a future version.Constructs NonIdentifierProperty instances. -
Uses of Type in org.hibernate.tuple.entity
Methods in org.hibernate.tuple.entity that return TypeModifier and TypeMethodDescription@Nullable Type[]EntityMetamodel.getDirtyCheckablePropertyTypes()Deprecated, for removal: This API element is subject to removal in a future version.Type[]EntityMetamodel.getPropertyTypes()Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.tuple.entity with parameters of type TypeModifierConstructorDescriptionprotectedAbstractEntityBasedAttribute(EntityPersister source, SessionFactoryImplementor sessionFactory, int attributeNumber, String attributeName, Type attributeType, BaselineAttributeInformation attributeInformation) Deprecated, for removal: This API element is subject to removal in a future version.EntityBasedBasicAttribute(EntityPersister source, SessionFactoryImplementor factory, int attributeNumber, String attributeName, Type attributeType, BaselineAttributeInformation baselineInfo) Deprecated, for removal: This API element is subject to removal in a future version.VersionProperty(EntityPersister source, SessionFactoryImplementor sessionFactory, int attributeNumber, String attributeName, Type attributeType, BaselineAttributeInformation attributeInformation) Deprecated, for removal: This API element is subject to removal in a future version.Constructs VersionProperty instances. -
Uses of Type in org.hibernate.type
Subinterfaces of Type in org.hibernate.typeModifier and TypeInterfaceDescriptioninterfaceExtension contract forBasicTypeimplementations which understand how to adjust themselves relative to where/how they're used by, for example, accounting for LOB, nationalized, primitive/wrapper, etc.interfaceA type that represents some kind of association between entities.interfaceBasicPluralType<C,E> A basic plural type.interfaceBasicType<T>Marker interface for basic types.interfaceRepresents a composite type, a type which itself has typed attributes.interfaceExtension for implementations ofBasicTypewhich have an implied conversion.Classes in org.hibernate.type that implement TypeModifier and TypeClassDescriptionclassTODO : javadocclassConvenience base class forBasicTypeimplementations.classAbstract superclass of the built-inTypehierarchy.classHandles "any" mappingsclassA type for persistent arrays.classclassBasicArrayType<T,E> A type that maps betweenARRAYandT[]classBasicCollectionType<C extends Collection<E>,E> A type that maps betweenARRAYandCollection<T>classA type that is assignable to every non-primitive type, that is, the type ofnull.classA type that handles HibernatePersistentCollections (including arrays).classHandles embedded mappings.classConvertedBasicArrayType<T,S, E> Given aBasicValueConverterfor an array type,classConvertedBasicCollectionType<C extends Collection<E>,E> A converted basic array type.classA custom type for mapping user-written classes that implementPersistentCollectionclassCustomType<J>classclassBase for types which map associations to persistent entities.classclassclassclassA many-to-one association to an entity.classclassDeprecated, for removal: This API element is subject to removal in a future version.The functionality of MetaType,DiscriminatorTypeandDiscriminatorMetadatahave been consolidated intoEntityDiscriminatorMappingandDiscriminatorConverterclassclassA one-to-one association to an entityclassA specialization of the map type, with (resultset-based) ordering.classA specialization of the set type, with (resultset-based) ordering.classclassSerializableToBlobType<T extends Serializable>classSerializableType<T extends Serializable>A type that maps between aVARBINARYandSerializableclasses.classclassclassclassA one-to-one association that maps to specific formula(s) instead of the primary key column of the owning entity.classA BasicType adapter targeting partial portability to 6.0's type system changes.classHandlesCompositeUserTypes.Methods in org.hibernate.type that return TypeModifier and TypeMethodDescriptionMetaType.getBaseType()Deprecated, for removal: This API element is subject to removal in a future version.AnyType.getDiscriminatorType()final TypeCollectionType.getElementType(SessionFactoryImplementor factory) Get the Hibernate type of the collection elementsfinal TypeEntityType.getIdentifierOrUniqueKeyType(Mapping factory) Determine the type of either (1) the identifier if we reference the associated entity's PK or (2) the unique key to which we refer (i.e.AnyType.getIdentifierType()Type[]AnyType.getSubtypes()Type[]ComponentType.getSubtypes()Type[]CompositeType.getSubtypes()Get the types of the component properties@Nullable TypeAbstractStandardBasicType.getTypeForEqualsHashCode()default @Nullable TypeType.getTypeForEqualsHashCode()The type to use forequals()andhashCode()computation.protected TypeEntityType.requireIdentifierOrUniqueKeyType(Mapping mapping) Methods in org.hibernate.type with parameters of type TypeModifier and TypeMethodDescriptionstatic voidTypeHelper.deepCopy(Object[] values, Type[] types, boolean[] copy, Object[] target, SharedSessionContractImplementor session) Deep copy a series of values from one array to another...static Object[]TypeHelper.replace(Object[] original, Object[] target, Type[] types, SharedSessionContractImplementor session, Object owner, Map<Object, Object> copyCache) Apply thereplace(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object, java.util.Map<java.lang.Object, java.lang.Object>)operation across a series of values.static Object[]TypeHelper.replace(Object[] original, Object[] target, Type[] types, SharedSessionContractImplementor session, Object owner, Map<Object, Object> copyCache, ForeignKeyDirection foreignKeyDirection) Apply thereplace(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object, java.util.Map<java.lang.Object, java.lang.Object>)operation across a series of values.static Object[]TypeHelper.replaceAssociations(Object[] original, Object[] target, Type[] types, SharedSessionContractImplementor session, Object owner, Map<Object, Object> copyCache, ForeignKeyDirection foreignKeyDirection) Apply thereplace(java.lang.Object, java.lang.Object, org.hibernate.engine.spi.SharedSessionContractImplementor, java.lang.Object, java.util.Map<java.lang.Object, java.lang.Object>)operation across a series of values, as long as the correspondingTypeis an association.Constructors in org.hibernate.type with parameters of type TypeModifierConstructorDescriptionAnyType(TypeConfiguration typeConfiguration, Type discriminatorType, Type identifierType, boolean lazy) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Type in org.hibernate.type.descriptor.converter.internal
Methods in org.hibernate.type.descriptor.converter.internal with parameters of type Type -
Uses of Type in org.hibernate.type.descriptor.sql
Methods in org.hibernate.type.descriptor.sql with parameters of type TypeModifier and TypeMethodDescriptiondefault StringDdlType.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) Return a type with length, precision, and scale specified by the given size object. -
Uses of Type in org.hibernate.type.descriptor.sql.internal
Methods in org.hibernate.type.descriptor.sql.internal with parameters of type TypeModifier and TypeMethodDescriptionArrayDdlTypeImpl.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) NamedNativeEnumDdlTypeImpl.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) NamedNativeOrdinalEnumDdlTypeImpl.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) NativeEnumDdlTypeImpl.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) NativeOrdinalEnumDdlTypeImpl.getTypeName(Size columnSize, Type type, DdlTypeRegistry ddlTypeRegistry) -
Uses of Type in org.hibernate.type.descriptor.sql.spi
Methods in org.hibernate.type.descriptor.sql.spi with parameters of type TypeModifier and TypeMethodDescriptionDdlTypeRegistry.getTypeName(int typeCode, Size columnSize, Type type) Get the SQL type name for the specifiedJDBC type codeand size, filling in the placemarkers$l,$p, and$swith the length, precision, and scale determined by the given size object. -
Uses of Type in org.hibernate.type.internal
Classes in org.hibernate.type.internal that implement TypeModifier and TypeClassDescriptionclassclassclassclassWrapper ofCustomMutabilityConvertedBasicTypeImplfor primitive type.classclass -
Uses of Type in org.hibernate.type.spi
Subinterfaces of Type in org.hibernate.type.spi
Interceptor.findDirty(Object, Object, Object[], Object[], String[], Type[])