Uses of Interface
org.hibernate.metamodel.mapping.BasicValuedMapping
-
Packages that use BasicValuedMapping Package Description org.hibernate.dialect.function Contains implementations ofSqmFunctionDescriptordescribing a range of relatively-sophisticated SQL functions available in various dialects.org.hibernate.dialect.function.array 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.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.query.derived org.hibernate.query.results Support for defining result set mappings used inNativeQuery,ProcedureCall, andStoredProcedureQuery.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such asSqlResultSetMappingor thehbm.xmlmapping element<resultset/>.org.hibernate.query.sqm.produce.function Package defining support forSqmFunctionDescriptorhandling.org.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree.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.sql.model.ast SQL AST extensions for model mutations.org.hibernate.type A HibernateTypeis a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.internal -
-
Uses of BasicValuedMapping in org.hibernate.dialect.function
Methods in org.hibernate.dialect.function that return BasicValuedMapping Modifier and Type Method Description BasicValuedMappingAvgFunction.ReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingSumReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)Method parameters in org.hibernate.dialect.function with type arguments of type BasicValuedMapping Modifier and Type Method Description BasicValuedMappingAvgFunction.ReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingSumReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments) -
Uses of BasicValuedMapping in org.hibernate.dialect.function.array
Methods in org.hibernate.dialect.function.array that return BasicValuedMapping Modifier and Type Method Description BasicValuedMappingArrayViaArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingArrayViaElementArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingElementViaArrayArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingJsonArrayViaElementArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)Method parameters in org.hibernate.dialect.function.array with type arguments of type BasicValuedMapping Modifier and Type Method Description BasicValuedMappingArrayViaArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingArrayViaElementArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingElementViaArrayArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)BasicValuedMappingJsonArrayViaElementArgumentReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments) -
Uses of BasicValuedMapping in org.hibernate.metamodel.mapping
Subinterfaces of BasicValuedMapping in org.hibernate.metamodel.mapping Modifier and Type Interface Description interfaceBasicEntityIdentifierMappingMapping for a simple, single-column identifierinterfaceBasicValuedModelPartDescribes a ModelPart which is a basic value, either aBasicattribute a basic-valued collection partinterfaceCollectionIdentifierDescriptorDescriptor for the collection identifier.interfaceDiscriminatorMappingMapping of a discriminator, for either entity or association (ANY) discrimination.interfaceDiscriminatorType<O>Union ofConvertedBasicTypeandBasicDomainTypecapabilities.interfaceEmbeddableDiscriminatorMappingDetails about the discriminator for an embeddable hierarchy.interfaceEntityDiscriminatorMappingDetails about the discriminator for an entity hierarchy.interfaceEntityRowIdMappingMapping of a row-idinterfaceEntityVersionMappingDescribes the mapping of an entity's version -
Uses of BasicValuedMapping in org.hibernate.metamodel.mapping.internal
Classes in org.hibernate.metamodel.mapping.internal that implement BasicValuedMapping Modifier and Type Class Description classAbstractDiscriminatorMappingclassAnyDiscriminatorPartActs as a ModelPart for the discriminator portion of an any-valued mappingclassAnyKeyPartActs as a ModelPart for the key portion of an any-valued mappingclassBasicAttributeMappingclassBasicEntityIdentifierMappingImplMapping of a simple identifierclassBasicValuedCollectionPartModels a basic collection element/value or index/keyclassCaseStatementDiscriminatorMappingImplclassCollectionIdentifierDescriptorImplclassDiscriminatorTypeImpl<O>Specialization of ConvertedBasicTypeImpl to expose access to theDiscriminatorTypeImpl.underlyingJdbcMappingof this discriminator - the bit that handles the relationship between the relational JavaType and the JdbcTypeclassEntityRowIdMappingImplclassEntityVersionMappingImplclassExplicitColumnDiscriminatorMappingImplclassSimpleForeignKeyDescriptorclassSimpleNaturalIdMappingSingle-attribute NaturalIdMapping implementation -
Uses of BasicValuedMapping in org.hibernate.persister.entity
Classes in org.hibernate.persister.entity that implement BasicValuedMapping Modifier and Type Class Description classDiscriminatorType<T>Deprecated, for removal: This API element is subject to removal in a future version.The functionality of DiscriminatorType,DiscriminatorMetadataandMetaTypehave been consolidated intoEntityDiscriminatorMappingandDiscriminatorConverter -
Uses of BasicValuedMapping in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement BasicValuedMapping Modifier and Type Class Description classAnonymousTupleBasicEntityIdentifierMappingclassAnonymousTupleBasicValuedModelPart -
Uses of BasicValuedMapping in org.hibernate.query.results
Constructors in org.hibernate.query.results with parameters of type BasicValuedMapping Constructor Description ResultSetMappingSqlSelection(int valuesArrayPosition, BasicValuedMapping valueMapping) -
Uses of BasicValuedMapping in org.hibernate.query.results.complete
Constructors in org.hibernate.query.results.complete with parameters of type BasicValuedMapping Constructor Description CompleteResultBuilderBasicValuedConverted(String explicitColumnName, ManagedBean<? extends AttributeConverter<O,R>> converterBean, JavaType<? extends AttributeConverter<O,R>> converterJtd, BasicJavaType<O> domainJavaType, BasicValuedMapping underlyingMapping)CompleteResultBuilderBasicValuedStandard(String explicitColumnName, BasicValuedMapping explicitType, JavaType<?> explicitJavaType) -
Uses of BasicValuedMapping in org.hibernate.query.sqm.produce.function
Methods in org.hibernate.query.sqm.produce.function that return BasicValuedMapping Modifier and Type Method Description static BasicValuedMappingStandardFunctionReturnTypeResolvers. extractArgumentValuedMapping(List<? extends SqlAstNode> arguments, int position)BasicValuedMappingFunctionReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)Resolve the return type for a function given its context-implied type and the arguments to this call.static BasicValuedMappingStandardFunctionReturnTypeResolvers. useImpliedTypeIfPossible(BasicValuedMapping defined, BasicValuedMapping implied)Methods in org.hibernate.query.sqm.produce.function with parameters of type BasicValuedMapping Modifier and Type Method Description static BasicValuedMappingStandardFunctionReturnTypeResolvers. useImpliedTypeIfPossible(BasicValuedMapping defined, BasicValuedMapping implied)Method parameters in org.hibernate.query.sqm.produce.function with type arguments of type BasicValuedMapping Modifier and Type Method Description BasicValuedMappingFunctionReturnTypeResolver. resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments)Resolve the return type for a function given its context-implied type and the arguments to this call. -
Uses of BasicValuedMapping in org.hibernate.query.sqm.tree.expression
Constructors in org.hibernate.query.sqm.tree.expression with parameters of type BasicValuedMapping Constructor Description Conversion(Duration duration, TemporalUnit unit, BasicValuedMapping type) -
Uses of BasicValuedMapping in org.hibernate.sql.ast.tree.expression
Classes in org.hibernate.sql.ast.tree.expression that implement BasicValuedMapping Modifier and Type Class Description classEmbeddableTypeLiteralclassEntityTypeLiteralMethods in org.hibernate.sql.ast.tree.expression that return BasicValuedMapping Modifier and Type Method Description BasicValuedMappingBinaryArithmeticExpression. getExpressionType()BasicValuedMappingDuration. getExpressionType()BasicValuedMappingDurationUnit. getExpressionType()BasicValuedMappingExtractUnit. getExpressionType()Constructors in org.hibernate.sql.ast.tree.expression with parameters of type BasicValuedMapping Constructor Description BinaryArithmeticExpression(Expression lhsOperand, BinaryArithmeticOperator operator, Expression rhsOperand, BasicValuedMapping resultType)Duration(Expression magnitude, TemporalUnit unit, BasicValuedMapping type)DurationUnit(TemporalUnit unit, BasicValuedMapping type)ExtractUnit(TemporalUnit unit, BasicValuedMapping type)UnaryOperation(UnaryArithmeticOperator operator, Expression operand, BasicValuedMapping type) -
Uses of BasicValuedMapping in org.hibernate.sql.exec.internal
Classes in org.hibernate.sql.exec.internal that implement BasicValuedMapping Modifier and Type Class Description classAbstractJdbcParameterclassJdbcParameterImplclassSqlTypedMappingJdbcParameterclassVersionTypeSeedParameterSpecificationParameter bind specification used for optimistic lock version seeding (from insert statements). -
Uses of BasicValuedMapping in org.hibernate.sql.model.ast
Classes in org.hibernate.sql.model.ast that implement BasicValuedMapping Modifier and Type Class Description classColumnValueParameterParameter descriptor specific to mutations. -
Uses of BasicValuedMapping in org.hibernate.type
Subinterfaces of BasicValuedMapping in org.hibernate.type Modifier and Type Interface Description interfaceAdjustableBasicType<J>Extension 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.interfaceBasicPluralType<C,E>A basic plural type.interfaceBasicType<T>Marker interface for basic types.interfaceConvertedBasicType<J>Extension for implementations ofBasicTypewhich have an implied conversion.Classes in org.hibernate.type that implement BasicValuedMapping Modifier and Type Class Description classAbstractSingleColumnStandardBasicType<T>TODO : javadocclassAbstractStandardBasicType<T>Convenience base class forBasicTypeimplementations.classBasicArrayType<T,E>A type that maps betweenARRAYandT[]classBasicCollectionType<C extends Collection<E>,E>A type that maps betweenARRAYandCollection<T>classBottomTypeA type that is assignable to every non-primitive type, that is, the type ofnull.classConvertedBasicArrayType<T,S,E>Given aBasicValueConverterfor an array type,classConvertedBasicCollectionType<C extends Collection<E>,E>A converted basic array type.classCustomType<J>classJavaObjectTypeclassNullTypeclassQueryParameterJavaObjectTypeclassSerializableToBlobType<T extends Serializable>classSerializableType<T extends Serializable>A type that maps between aVARBINARYandSerializableclasses.classStandardBasicTypeTemplate<J>A BasicType adapter targeting partial portability to 6.0's type system changes. -
Uses of BasicValuedMapping in org.hibernate.type.internal
Classes in org.hibernate.type.internal that implement BasicValuedMapping Modifier and Type Class Description classBasicTypeImpl<J>classConvertedBasicTypeImpl<J>classCustomMutabilityConvertedBasicTypeImpl<J>classCustomMutabilityConvertedPrimitiveBasicTypeImpl<J>Wrapper ofCustomMutabilityConvertedBasicTypeImplfor primitive type.classImmutableNamedBasicTypeImpl<J>classNamedBasicTypeImpl<J>
-