Uses of Interface
org.hibernate.metamodel.mapping.MappingType
-
Packages that use MappingType Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.metamodel.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).org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.processor.validation Validation for HQL queries.org.hibernate.query.derived org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.internal -
-
Uses of MappingType in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type MappingType Modifier and Type Method Description static int
StructHelper. getJdbcValueCount(MappingType mappedType)
-
Uses of MappingType in org.hibernate.id
Subinterfaces of MappingType in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentityPersister
Deprecated, for removal: This API element is subject to removal in a future version.UseEntityPersister
instead. -
Uses of MappingType in org.hibernate.metamodel.mapping
Subinterfaces of MappingType in org.hibernate.metamodel.mapping Modifier and Type Interface Description interface
CollectionMappingType<C>
MappingType descriptor for the collection Java type (List, Set, etc)interface
DiscriminatorType<O>
Union ofConvertedBasicType
andBasicDomainType
capabilities.interface
EmbeddableMappingType
Describes an embeddable - the actual typeinterface
EntityMappingType
Mapping of an entityinterface
JdbcMapping
Describes the mapping for things which can be expressed in a SQL query.interface
ManagedMappingType
Mapping-model corollary toManagedType
static interface
NonAggregatedIdentifierMapping.IdentifierValueMapper
Think of an AttributeConverter for id values to account for representation difference between virtual and id-class mappingsMethods in org.hibernate.metamodel.mapping that return MappingType Modifier and Type Method Description MappingType
OwnedValuedModelPart. getDeclaringType()
MappingType
ValueMapping. getMappedType()
Descriptor for the type of this mappingdefault MappingType
BasicValuedModelPart. getPartMappingType()
default MappingType
EntityMappingType. getPartMappingType()
default MappingType
ManagedMappingType. getPartMappingType()
MappingType
ModelPart. getPartMappingType()
The type for this part. -
Uses of MappingType in org.hibernate.metamodel.mapping.internal
Subinterfaces of MappingType in org.hibernate.metamodel.mapping.internal Modifier and Type Interface Description interface
InFlightEntityMappingType
Classes in org.hibernate.metamodel.mapping.internal that implement MappingType Modifier and Type Class Description class
AbstractEmbeddableMapping
Base support for EmbeddableMappingType implementationsclass
CompoundNaturalIdMapping
Multi-attribute NaturalIdMapping implementationclass
DiscriminatedAssociationMapping
Represents the "type" of an any-valued mappingclass
DiscriminatorTypeImpl<O>
Specialization of ConvertedBasicTypeImpl to expose access to theDiscriminatorTypeImpl.underlyingJdbcMapping
of this discriminator - the bit that handles the relationship between the relational JavaType and the JdbcTypeclass
EmbeddableMappingTypeImpl
Describes a "normal" embeddable.class
IdClassEmbeddable
EmbeddableMappingType implementation describing anIdClass
class
VirtualIdEmbeddable
Embeddable describing the virtual-id aspect of a non-aggregated composite idMethods in org.hibernate.metamodel.mapping.internal that return MappingType Modifier and Type Method Description MappingType
AbstractDiscriminatorMapping. getMappedType()
MappingType
AnyDiscriminatorPart. getMappedType()
MappingType
AnyKeyPart. getMappedType()
MappingType
BasicAttributeMapping. getMappedType()
MappingType
BasicEntityIdentifierMappingImpl. getMappedType()
MappingType
BasicValuedCollectionPart. getMappedType()
MappingType
CollectionIdentifierDescriptorImpl. getMappedType()
MappingType
DiscriminatedAssociationAttributeMapping. getMappedType()
MappingType
DiscriminatedCollectionPart. getMappedType()
MappingType
EmbeddedForeignKeyDescriptor. getMappedType()
MappingType
EntityRowIdMappingImpl. getMappedType()
MappingType
EntityVersionMappingImpl. getMappedType()
MappingType
SimpleForeignKeyDescriptor. getMappedType()
MappingType
SimpleNaturalIdMapping. getMappedType()
MappingType
AbstractAttributeMapping. getPartMappingType()
MappingType
BasicEntityIdentifierMappingImpl. getPartMappingType()
MappingType
BasicValuedCollectionPart. getPartMappingType()
MappingType
CollectionIdentifierDescriptorImpl. getPartMappingType()
MappingType
CompoundNaturalIdMapping. getPartMappingType()
MappingType
DiscriminatedAssociationMapping. getPartMappingType()
MappingType
DiscriminatedCollectionPart. getPartMappingType()
MappingType
EmbeddedCollectionPart. getPartMappingType()
MappingType
EmbeddedForeignKeyDescriptor. getPartMappingType()
MappingType
EntityRowIdMappingImpl. getPartMappingType()
MappingType
EntityVersionMappingImpl. getPartMappingType()
MappingType
SimpleForeignKeyDescriptor. getPartMappingType()
MappingType
SimpleNaturalIdMapping. getPartMappingType()
MappingType
SoftDeleteMappingImpl. getPartMappingType()
-
Uses of MappingType in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement MappingType Modifier and Type Class Description class
BasicTypeImpl<J>
class
PrimitiveBasicTypeImpl<J>
-
Uses of MappingType in org.hibernate.persister.entity
Subinterfaces of MappingType in org.hibernate.persister.entity Modifier and Type Interface Description interface
DeprecatedEntityStuff
Deprecated.Just used to singly extend all the deprecated entity persister rolesinterface
EntityPersister
A strategy for persisting a mapped entity class.interface
Loadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
Lockable
Deprecated, for removal: This API element is subject to removal in a future version.interface
OuterJoinLoadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
Queryable
Deprecated.UseEntityMappingType
insteadinterface
SQLLoadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
UniqueKeyLoadable
Classes in org.hibernate.persister.entity that implement MappingType Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC, using either generated or custom SQL.class
DiscriminatorType<T>
Deprecated, for removal: This API element is subject to removal in a future version.The functionality of DiscriminatorType,DiscriminatorMetadata
andMetaType
have been consolidated intoEntityDiscriminatorMapping
andDiscriminatorConverter
class
JoinedSubclassEntityPersister
AnEntityPersister
implementing the normalizedInheritanceType.JOINED
inheritance mapping strategy for an entity and its inheritance hierarchy.class
SingleTableEntityPersister
The default implementation of theEntityPersister
interface.class
UnionSubclassEntityPersister
AnEntityPersister
implementing theInheritanceType.TABLE_PER_CLASS
mapping strategy for an entity and its inheritance hierarchy. -
Uses of MappingType in org.hibernate.processor.validation
Classes in org.hibernate.processor.validation that implement MappingType Modifier and Type Class Description class
MockEntityPersister
static class
ProcessorSessionFactory.EntityPersister
-
Uses of MappingType in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement MappingType Modifier and Type Class Description class
AnonymousTupleBasicEntityIdentifierMapping
class
AnonymousTupleBasicValuedModelPart
class
AnonymousTupleEmbeddableValuedModelPart
class
AnonymousTupleEmbeddedEntityIdentifierMapping
class
AnonymousTupleEntityValuedModelPart
class
AnonymousTupleNonAggregatedEntityIdentifierMapping
class
AnonymousTupleTableGroupProducer
The table group producer for an anonymous tuple type.class
CteTupleTableGroupProducer
The table group producer for a CTE tuple type.Methods in org.hibernate.query.derived that return MappingType Modifier and Type Method Description MappingType
AnonymousTupleBasicValuedModelPart. getDeclaringType()
MappingType
AnonymousTupleBasicValuedModelPart. getMappedType()
MappingType
AnonymousTupleEntityValuedModelPart. getMappedType()
MappingType
AnonymousTupleBasicValuedModelPart. getPartMappingType()
MappingType
AnonymousTupleEntityValuedModelPart. getPartMappingType()
MappingType
AnonymousTupleTableGroupProducer. getPartMappingType()
Methods in org.hibernate.query.derived with parameters of type MappingType Modifier and Type Method Description static ModelPart
AnonymousTupleTableGroupProducer. createModelPart(MappingType mappingType, SqmExpressible<?> sqmExpressible, DomainType<?> domainType, List<SqlSelection> sqlSelections, int selectionIndex, String selectionExpression, String partName, ModelPart existingModelPart, Set<String> compatibleTableExpressions, int fetchableIndex)
Constructors in org.hibernate.query.derived with parameters of type MappingType Constructor Description AnonymousTupleBasicEntityIdentifierMapping(MappingType declaringType, String selectionExpression, SqmExpressible<?> expressible, JdbcMapping jdbcMapping, BasicEntityIdentifierMapping delegate)
AnonymousTupleBasicValuedModelPart(MappingType declaringType, String partName, String selectionExpression, SqmExpressible<?> expressible, JdbcMapping jdbcMapping, int fetchableIndex)
-
Uses of MappingType in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression that return MappingType Modifier and Type Method Description MappingType
EmbeddableTypeLiteral. getMappedType()
MappingType
EntityTypeLiteral. getMappedType()
-
Uses of MappingType in org.hibernate.sql.exec.internal
Methods in org.hibernate.sql.exec.internal that return MappingType Modifier and Type Method Description MappingType
AbstractJdbcParameter. getMappedType()
-
Uses of MappingType in org.hibernate.type
Subinterfaces of MappingType in org.hibernate.type Modifier and Type Interface Description interface
AdjustableBasicType<J>
Extension contract forBasicType
implementations which understand how to adjust themselves relative to where/how they're used by, for example, accounting for LOB, nationalized, primitive/wrapper, etc.interface
BasicPluralType<C,E>
A basic plural type.interface
BasicType<T>
Marker interface for basic types.interface
ConvertedBasicType<J>
Extension for implementations ofBasicType
which have an implied conversion.Classes in org.hibernate.type that implement MappingType Modifier and Type Class Description class
AbstractSingleColumnStandardBasicType<T>
TODO : javadocclass
AbstractStandardBasicType<T>
Convenience base class forBasicType
implementations.class
BasicArrayType<T,E>
A type that maps betweenARRAY
andT[]
class
BasicCollectionType<C extends Collection<E>,E>
A type that maps betweenARRAY
andCollection<T>
class
BottomType
A type that is assignable to every non-primitive type, that is, the type ofnull
.class
ConvertedBasicArrayType<T,S,E>
Given aBasicValueConverter
for an array type,class
ConvertedBasicCollectionType<C extends Collection<E>,E>
A converted basic array type.class
CustomType<J>
class
JavaObjectType
class
NullType
class
QueryParameterJavaObjectType
class
SerializableToBlobType<T extends Serializable>
class
SerializableType<T extends Serializable>
A type that maps between aVARBINARY
andSerializable
classes.class
StandardBasicTypeTemplate<J>
A BasicType adapter targeting partial portability to 6.0's type system changes.Methods in org.hibernate.type that return MappingType Modifier and Type Method Description default MappingType
BasicType. getMappedType()
-
Uses of MappingType in org.hibernate.type.internal
Classes in org.hibernate.type.internal that implement MappingType Modifier and Type Class Description class
BasicTypeImpl<J>
class
ConvertedBasicTypeImpl<J>
class
CustomMutabilityConvertedBasicTypeImpl<J>
class
CustomMutabilityConvertedPrimitiveBasicTypeImpl<J>
Wrapper ofCustomMutabilityConvertedBasicTypeImpl
for primitive type.class
ImmutableNamedBasicTypeImpl<J>
class
NamedBasicTypeImpl<J>
-