Package org.hibernate.metamodel.mapping
Interface JdbcMappingContainer
-
- All Known Subinterfaces:
AdjustableBasicType<J>,AggregatedIdentifierMapping,Association,AttributeMapping,BasicEntityIdentifierMapping,BasicPluralType<C,E>,BasicType<T>,BasicValuedMapping,BasicValuedModelPart,Bindable,CollectionIdentifierDescriptor,CollectionPart,CompositeIdentifierMapping,ConvertedBasicType<J>,DatabaseSnapshotContributor,DeprecatedEntityStuff,DiscriminatedAssociationModelPart,DiscriminatorMapping,DiscriminatorType<O>,EmbeddableDiscriminatorMapping,EmbeddableMappingType,EmbeddableValuedFetchable,EmbeddableValuedModelPart,EntityAssociationMapping,EntityDiscriminatorMapping,EntityIdentifierMapping,EntityMappingType,EntityPersister,EntityRowIdMapping,EntityValuedFetchable,EntityValuedModelPart,EntityVersionMapping,Fetchable,FetchableContainer,ForeignKeyDescriptor,JdbcMapping,Loadable,Loadable,Lockable,ManagedMappingType,MappingModelExpressible<T>,ModelPart,ModelPartContainer,NaturalIdMapping,NonAggregatedIdentifierMapping,NonAggregatedIdentifierMapping.IdentifierValueMapper,OuterJoinLoadable,OwnedValuedModelPart,PluralAttributeMapping,PostInsertIdentityPersister,Queryable,RootTableGroupProducer,org.hibernate.metamodel.mapping.internal.SingleAttributeIdentifierMapping,SingularAttributeMapping,SoftDeletableModelPart,SoftDeleteMapping,SqlExpressible,SQLLoadable,TableGroupJoinProducer,TableGroupProducer,UniqueKeyLoadable,ValuedModelPart,ValueMapping,VirtualModelPart
- All Known Implementing Classes:
AbstractEntityPersister,org.hibernate.sql.exec.internal.AbstractJdbcParameter,AbstractSingleColumnStandardBasicType,AbstractStandardBasicType,AnonymousTupleBasicEntityIdentifierMapping,AnonymousTupleBasicValuedModelPart,AnonymousTupleEmbeddableValuedModelPart,AnonymousTupleEmbeddedEntityIdentifierMapping,AnonymousTupleEntityValuedModelPart,AnonymousTupleNonAggregatedEntityIdentifierMapping,AnonymousTupleTableGroupProducer,BasicArrayType,BasicCollectionType,BottomType,Collation,ColumnValueParameter,ConvertedBasicArrayType,ConvertedBasicCollectionType,CteTupleTableGroupProducer,CustomType,DiscriminatorType,Distinct,EmbeddableTypeLiteral,EntityTypeLiteral,Format,JavaObjectType,JdbcLiteral,JoinedSubclassEntityPersister,NullType,Overflow,QueryParameterJavaObjectType,SelfRenderingAggregateFunctionSqlAstExpression,SelfRenderingFunctionSqlAstExpression,SelfRenderingOrderedSetAggregateFunctionSqlAstExpression,SelfRenderingWindowFunctionSqlAstExpression,SerializableToBlobType,SerializableType,SingleTableEntityPersister,StandardBasicTypeTemplate,TrimSpecification,UnionSubclassEntityPersister
public interface JdbcMappingContainerContainer for one-or-more JdbcMappings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description intforEachJdbcType(int offset, org.hibernate.internal.util.IndexedConsumer<JdbcMapping> action)Visit each JdbcMapping starting from the given offsetdefault intforEachJdbcType(org.hibernate.internal.util.IndexedConsumer<JdbcMapping> action)Visit each of JdbcMappingJdbcMappinggetJdbcMapping(int index)default intgetJdbcTypeCount()The number of JDBC mappingsdefault JdbcMappinggetSingleJdbcMapping()
-
-
-
Method Detail
-
getJdbcTypeCount
default int getJdbcTypeCount()
The number of JDBC mappings
-
getJdbcMapping
JdbcMapping getJdbcMapping(int index)
-
getSingleJdbcMapping
default JdbcMapping getSingleJdbcMapping()
-
forEachJdbcType
default int forEachJdbcType(org.hibernate.internal.util.IndexedConsumer<JdbcMapping> action)
Visit each of JdbcMapping- API Note:
- Same as
forEachJdbcType(int, IndexedConsumer)starting from `0`
-
forEachJdbcType
int forEachJdbcType(int offset, org.hibernate.internal.util.IndexedConsumer<JdbcMapping> action)Visit each JdbcMapping starting from the given offset
-
-