Uses of Interface
org.hibernate.metamodel.mapping.JdbcMappingContainer
-
Packages that use JdbcMappingContainer Package Description 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.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.loader.ast.spi org.hibernate.metamodel.internal 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.persister.internal Built-in implementation of the SPI for integrating entity and collection persisters.org.hibernate.query.derived org.hibernate.query.sqm.function Package defining support for HQL, including JPQL as a subset of HQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.ast.tree.from AST nodes representing root tables and joins in a SQL tree.org.hibernate.sql.ast.tree.predicate AST nodes representing logical predicates in a SQL tree.org.hibernate.sql.ast.tree.select AST nodes representingselect
statements in a SQL tree.org.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC.org.hibernate.sql.model.ast SQL AST extensions for model mutations.org.hibernate.sql.results.graph Defines domain result graphs.org.hibernate.sql.results.graph.embeddable org.hibernate.sql.results.graph.entity org.hibernate.sql.results.internal org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.internal org.hibernate.type.spi Defines a registry for HibernateType
s. -
-
Uses of JdbcMappingContainer in org.hibernate.id
Subinterfaces of JdbcMappingContainer in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentityPersister
A persister that may have an identity assigned by execution of a SQLINSERT
. -
Uses of JdbcMappingContainer in org.hibernate.internal
Methods in org.hibernate.internal that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
FilterJdbcParameter. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.loader.ast.spi
Subinterfaces of JdbcMappingContainer in org.hibernate.loader.ast.spi Modifier and Type Interface Description interface
Loadable
Common details for things that can be loaded by a loader - generally entities and plural attributes (collections). -
Uses of JdbcMappingContainer in org.hibernate.metamodel.internal
Classes in org.hibernate.metamodel.internal that implement JdbcMappingContainer Modifier and Type Class Description class
AbstractCompositeIdentifierMapping
Base implementation for composite identifier mappings -
Uses of JdbcMappingContainer in org.hibernate.metamodel.mapping
Subinterfaces of JdbcMappingContainer in org.hibernate.metamodel.mapping Modifier and Type Interface Description interface
AggregatedIdentifierMapping
An "aggregated" composite identifier, which is another way to say that the identifier is represented as an embeddable.interface
Association
Commonality for an association, mainly details relative to the foreign-keyinterface
AttributeMapping
Describes an attribute at the mapping model level.interface
BasicEntityIdentifierMapping
Mapping for a simple, single-column identifierinterface
BasicValuedMapping
Any basic-typed ValueMapping.interface
BasicValuedModelPart
Describes a ModelPart which is a basic value, either aBasic
attribute a basic-valued collection partinterface
Bindable
Contract for things at the domain mapping level that can be bound into a JDBCPreparedStatement
.interface
CollectionIdentifierDescriptor
Descriptor for the collection identifier.interface
CollectionPart
Hibernate understands mapping a collection into 4 parts The key - the foreign-key defining the association to the owner The element - for Map's this is analogous to the value The index - the List/array index or Map key The collection-id - this is only relevant for id-bag mappingsinterface
CompositeIdentifierMapping
Mapping for a composite identifierinterface
DiscriminatedAssociationModelPart
A discriminated association.interface
DiscriminatorMapping
Mapping of a discriminator, for either entity or association (ANY) discrimination.interface
DiscriminatorType<O>
Union ofConvertedBasicType
andBasicDomainType
capabilities.interface
EmbeddableMappingType
Describes an embeddable - the actual typeinterface
EmbeddableValuedModelPart
Describes the mapping of an embeddable (composite).interface
EntityAssociationMapping
Commonality between `many-to-one`, `one-to-one` and `any`, as well as entity-valued collection elements and map-keysinterface
EntityDiscriminatorMapping
Details about the discriminator for an entity hierarchy.interface
EntityIdentifierMapping
Describes the mapping of an entity's identifier.interface
EntityMappingType
Mapping of an entityinterface
EntityRowIdMapping
Mapping of a row-idinterface
EntityValuedModelPart
interface
EntityVersionMapping
Describes the mapping of an entity's versioninterface
ForeignKeyDescriptor
Descriptor for foreign-keysinterface
JdbcMapping
Describes the mapping for things which can be expressed in a SQL query.interface
ManagedMappingType
Mapping-model corollary toManagedType
interface
MappingModelExpressible<T>
Something that can be expressible at the mapping model level.interface
ModelPart
Base descriptor, within the mapping model, for any part of the application's domain model: an attribute, an entity identifier, collection elements, and so on.interface
ModelPartContainer
Access to a group of ModelPart by name or for iteration.interface
NaturalIdMapping
Mapping for an entity's natural-id, if one is defined.interface
NonAggregatedIdentifierMapping
A "non-aggregated" composite identifier, which means that the entity itself does not define a singular representation of its identifier like an aggregated mapping does.static interface
NonAggregatedIdentifierMapping.IdentifierValueMapper
Think of an AttributeConverter for id values to account for representation difference between virtual and id-class mappingsinterface
OwnedValuedModelPart
Marker interface for valued model parts that have a declaring/owner type.interface
PluralAttributeMapping
Mapping of a plural (collection-valued) attributeinterface
SingularAttributeMapping
Mapping for a singular (non-collection) attribute.interface
SqlExpressible
Unifying contract for things that are capable of being an expression in the SQL AST.interface
ValuedModelPart
Describes a ModelPart that is also a ValueMapping (and therefore also a SelectableMappings).interface
ValueMapping
Describes a mapping related to any part of the app's domain model, for example, an attribute, an entity identifier, collection elements, etc.interface
VirtualModelPart
Marker interface for parts of the application domain model that do not actually exist in the model classes.Methods in org.hibernate.metamodel.mapping with parameters of type JdbcMappingContainer Modifier and Type Method Description default void
SelectableConsumer. accept(String tableName, JdbcMappingContainer base, String[] columnNames)
Simple form of visitation over a number of columns by name, using a separateSelectableMappings
as a base for additional details.Constructors in org.hibernate.metamodel.mapping with parameters of type JdbcMappingContainer Constructor Description MutableSelectableMapping(String tableName, JdbcMappingContainer base, String[] columnNames)
-
Uses of JdbcMappingContainer in org.hibernate.metamodel.mapping.internal
Subinterfaces of JdbcMappingContainer in org.hibernate.metamodel.mapping.internal Modifier and Type Interface Description interface
EntityCollectionPart
An entity-valued collection-part.interface
InFlightEntityMappingType
interface
SingleAttributeIdentifierMapping
Classes in org.hibernate.metamodel.mapping.internal that implement JdbcMappingContainer Modifier and Type Class Description class
AbstractAttributeMapping
class
AbstractDiscriminatorMapping
class
AbstractEmbeddableMapping
Base support for EmbeddableMappingType implementationsclass
AbstractEntityCollectionPart
Base support for EntityCollectionPart implementationsclass
AbstractNaturalIdMapping
class
AbstractSingularAttributeMapping
class
AbstractStateArrayContributorMapping
class
AnyDiscriminatorPart
Acts as a ModelPart for the discriminator portion of an any-valued mappingclass
AnyKeyPart
Acts as a ModelPart for the key portion of an any-valued mappingclass
BasicAttributeMapping
class
BasicEntityIdentifierMappingImpl
Mapping of a simple identifierclass
BasicValuedCollectionPart
Models a basic collection element/value or index/keyclass
CaseStatementDiscriminatorMappingImpl
class
CollectionIdentifierDescriptorImpl
class
CompoundNaturalIdMapping
Multi-attribute NaturalIdMapping implementationclass
DiscriminatedAssociationAttributeMapping
Singular, any-valued attributeclass
DiscriminatedCollectionPart
class
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
EmbeddedAttributeMapping
class
EmbeddedCollectionPart
class
EmbeddedForeignKeyDescriptor
class
EmbeddedIdentifierMappingImpl
Support forEmbeddedId
class
EntityRowIdMappingImpl
class
EntityVersionMappingImpl
class
ExplicitColumnDiscriminatorMappingImpl
class
IdClassEmbeddable
EmbeddableMappingType implementation describing anIdClass
class
InverseNonAggregatedIdentifierMapping
The inverse part of a "non-aggregated" composite identifier.class
ManyToManyCollectionPart
Entity-valued collection-part mapped through a join table.class
NonAggregatedIdentifierMappingImpl
A "non-aggregated" composite identifier.class
OneToManyCollectionPart
order( id, ...class
PluralAttributeMappingImpl
class
SimpleForeignKeyDescriptor
class
SimpleNaturalIdMapping
Single-attribute NaturalIdMapping implementationclass
ToOneAttributeMapping
class
VirtualEmbeddedAttributeMapping
class
VirtualIdEmbeddable
Embeddable describing the virtual-id aspect of a non-aggregated composite idMethods in org.hibernate.metamodel.mapping.internal that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
CaseStatementDiscriminatorMappingImpl.CaseStatementDiscriminatorExpression. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement JdbcMappingContainer Modifier and Type Class Description class
ArrayTupleType
class
TupleMappingModelExpressible
-
Uses of JdbcMappingContainer in org.hibernate.persister.entity
Subinterfaces of JdbcMappingContainer 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 JdbcMappingContainer 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 JdbcMappingContainer in org.hibernate.persister.internal
Methods in org.hibernate.persister.internal that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
SqlFragmentPredicate. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement JdbcMappingContainer 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. -
Uses of JdbcMappingContainer in org.hibernate.query.sqm.function
Classes in org.hibernate.query.sqm.function that implement JdbcMappingContainer Modifier and Type Class Description class
SelfRenderingAggregateFunctionSqlAstExpression
Representation of an aggregate function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingFunctionSqlAstExpression
Representation of a function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingOrderedSetAggregateFunctionSqlAstExpression
Representation of an aggregate function call in the SQL AST for impls that know how to render themselves.class
SelfRenderingWindowFunctionSqlAstExpression
Representation of a window function call in the SQL AST for impls that know how to render themselves.Methods in org.hibernate.query.sqm.function that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
SelfRenderingFunctionSqlAstExpression. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
SqlSelection. getExpressionType()
Get the type of the expressionMethods in org.hibernate.sql.ast.spi with parameters of type JdbcMappingContainer Modifier and Type Method Description protected boolean
AbstractSqlAstTranslator. isStruct(JdbcMappingContainer expressionType)
-
Uses of JdbcMappingContainer in org.hibernate.sql.ast.tree.expression
Classes in org.hibernate.sql.ast.tree.expression that implement JdbcMappingContainer Modifier and Type Class Description class
Collation
class
Distinct
class
EntityTypeLiteral
class
Format
Represents the format pattern for a date/time format expressionclass
JdbcLiteral<T>
Represents a literal in the SQL AST.class
Overflow
class
TrimSpecification
Methods in org.hibernate.sql.ast.tree.expression that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
AggregateColumnWriteExpression. getExpressionType()
JdbcMappingContainer
AliasedExpression. getExpressionType()
JdbcMappingContainer
CastTarget. getExpressionType()
JdbcMappingContainer
Distinct. getExpressionType()
JdbcMappingContainer
Expression. getExpressionType()
The type for this expressionJdbcMappingContainer
LiteralAsParameter. getExpressionType()
JdbcMappingContainer
ModifiedSubQueryExpression. getExpressionType()
JdbcMappingContainer
Over. getExpressionType()
JdbcMappingContainer
Overflow. getExpressionType()
JdbcMappingContainer
SelfRenderingSqlFragmentExpression. getExpressionType()
JdbcMappingContainer
SqlSelectionExpression. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.sql.ast.tree.from
Subinterfaces of JdbcMappingContainer in org.hibernate.sql.ast.tree.from Modifier and Type Interface Description interface
RootTableGroupProducer
Contract for things that can produce theTableGroup
that is a root of afrom-clause
interface
TableGroupJoinProducer
interface
TableGroupProducer
Marker interface for anything which produces a TableGroup -
Uses of JdbcMappingContainer in org.hibernate.sql.ast.tree.predicate
Methods in org.hibernate.sql.ast.tree.predicate that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
AbstractPredicate. getExpressionType()
JdbcMappingContainer
ComparisonPredicate. getExpressionType()
JdbcMappingContainer
ExistsPredicate. getExpressionType()
JdbcMappingContainer
FilterPredicate.FilterFragmentPredicate. getExpressionType()
JdbcMappingContainer
FilterPredicate. getExpressionType()
JdbcMappingContainer
GroupedPredicate. getExpressionType()
JdbcMappingContainer
Junction. getExpressionType()
JdbcMappingContainer
NegatedPredicate. getExpressionType()
JdbcMappingContainer
SelfRenderingPredicate. getExpressionType()
Constructors in org.hibernate.sql.ast.tree.predicate with parameters of type JdbcMappingContainer Constructor Description AbstractPredicate(JdbcMappingContainer expressionType)
AbstractPredicate(JdbcMappingContainer expressionType, boolean negated)
BetweenPredicate(Expression expression, Expression lowerBound, Expression upperBound, boolean negated, JdbcMappingContainer expressionType)
BooleanExpressionPredicate(Expression expression, boolean negated, JdbcMappingContainer expressionType)
ComparisonPredicate(Expression leftHandExpression, ComparisonOperator operator, Expression rightHandExpression, JdbcMappingContainer expressionType)
ExistsPredicate(QueryPart expression, boolean negated, JdbcMappingContainer expressionType)
ExistsPredicate(SelectStatement expression, boolean negated, JdbcMappingContainer expressionType)
InArrayPredicate(Expression testExpression, JdbcParameter arrayParameter, JdbcMappingContainer expressionType)
InListPredicate(Expression testExpression, boolean negated, JdbcMappingContainer expressionType)
InListPredicate(Expression testExpression, List<Expression> listExpressions, boolean negated, JdbcMappingContainer expressionType)
InSubQueryPredicate(Expression testExpression, SelectStatement subQuery, boolean negated, JdbcMappingContainer expressionType)
Junction(Junction.Nature nature, List<Predicate> predicates, JdbcMappingContainer expressionType)
Junction(Junction.Nature nature, JdbcMappingContainer expressionType)
LikePredicate(Expression matchExpression, Expression pattern, Expression escapeCharacter, boolean negated, boolean isCaseSensitive, JdbcMappingContainer expressionType)
NullnessPredicate(Expression expression, boolean negated, JdbcMappingContainer expressionType)
-
Uses of JdbcMappingContainer in org.hibernate.sql.ast.tree.select
Methods in org.hibernate.sql.ast.tree.select that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
SelectStatement. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.sql.exec.internal
Classes in org.hibernate.sql.exec.internal that implement JdbcMappingContainer Modifier and Type Class Description class
AbstractJdbcParameter
class
JdbcParameterImpl
class
SqlTypedMappingJdbcParameter
class
VersionTypeSeedParameterSpecification
Parameter bind specification used for optimistic lock version seeding (from insert statements). -
Uses of JdbcMappingContainer in org.hibernate.sql.model.ast
Classes in org.hibernate.sql.model.ast that implement JdbcMappingContainer Modifier and Type Class Description class
ColumnValueParameter
Parameter descriptor specific to mutations. -
Uses of JdbcMappingContainer in org.hibernate.sql.results.graph
Subinterfaces of JdbcMappingContainer in org.hibernate.sql.results.graph Modifier and Type Interface Description interface
DatabaseSnapshotContributor
Contract for model-parts which contribute to their container's state array for database snapshotsinterface
Fetchable
Parts of the domain model that can be fetched.interface
FetchableContainer
Container ofFetchable
references -
Uses of JdbcMappingContainer in org.hibernate.sql.results.graph.embeddable
Subinterfaces of JdbcMappingContainer in org.hibernate.sql.results.graph.embeddable Modifier and Type Interface Description interface
EmbeddableValuedFetchable
-
Uses of JdbcMappingContainer in org.hibernate.sql.results.graph.entity
Subinterfaces of JdbcMappingContainer in org.hibernate.sql.results.graph.entity Modifier and Type Interface Description interface
EntityValuedFetchable
Fetchable which is entity-valued -
Uses of JdbcMappingContainer in org.hibernate.sql.results.internal
Methods in org.hibernate.sql.results.internal that return JdbcMappingContainer Modifier and Type Method Description JdbcMappingContainer
ResolvedSqlSelection. getExpressionType()
JdbcMappingContainer
SqlSelectionImpl. getExpressionType()
-
Uses of JdbcMappingContainer in org.hibernate.type
Subinterfaces of JdbcMappingContainer 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 JdbcMappingContainer Modifier and Type Class Description class
AbstractSingleColumnStandardBasicType<T>
TODO : javadocclass
AbstractStandardBasicType<T>
Convenience base class forBasicType
implementations.class
BasicArrayType<T>
A type that maps betweenARRAY
andT[]
class
BasicCollectionType<C extends Collection<E>,E>
A type that maps betweenARRAY
andCollection<T>
class
ConvertedBasicArrayType<T>
A converted basic array type.class
ConvertedBasicCollectionType<C extends Collection<E>,E>
A converted basic array type.class
CustomType<J>
class
JavaObjectType
class
NullType
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. -
Uses of JdbcMappingContainer in org.hibernate.type.internal
Classes in org.hibernate.type.internal that implement JdbcMappingContainer Modifier and Type Class Description class
BasicTypeImpl<J>
class
ConvertedBasicTypeImpl<J>
class
CustomMutabilityConvertedBasicTypeImpl<J>
class
ImmutableNamedBasicTypeImpl<J>
class
NamedBasicTypeImpl<J>
-
Uses of JdbcMappingContainer in org.hibernate.type.spi
Methods in org.hibernate.type.spi with parameters of type JdbcMappingContainer Modifier and Type Method Description static IntervalType
TypeConfiguration. getSqlIntervalType(JdbcMappingContainer jdbcMappings)
static TemporalType
TypeConfiguration. getSqlTemporalType(JdbcMappingContainer jdbcMappings)
-