Uses of Interface
org.hibernate.type.descriptor.converter.spi.BasicValueConverter
-
Packages that use BasicValueConverter Package Description org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.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.sql.results.graph.basic org.hibernate.type A HibernateTypeis a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.converter.spi An SPI for basic-typed value conversions, including support for handling JPAAttributeConverterinstances as part of the HibernateTypesystem.org.hibernate.usertype An API for user-defined custom types which extend the set of built-in types defined inorg.hibernate.type. -
-
Uses of BasicValueConverter in org.hibernate.mapping
Methods in org.hibernate.mapping that return BasicValueConverter Modifier and Type Method Description BasicValueConverter<J,?>BasicValue.Resolution. getValueConverter()Converter, if any, to convert values between the domain and relational JavaType representations -
Uses of BasicValueConverter in org.hibernate.metamodel.mapping
Classes in org.hibernate.metamodel.mapping that implement BasicValueConverter Modifier and Type Class Description classDiscriminatorConverter<O,R>Conversion of discriminator values between the entity name/Class domain form and its generally CHARACTER or INTEGER based relational formMethods in org.hibernate.metamodel.mapping that return BasicValueConverter Modifier and Type Method Description default BasicValueConverterJdbcMapping. getValueConverter()Returns the converter that this basic type uses for transforming from the domain type, to the relational type, ornullif there is no conversion. -
Uses of BasicValueConverter in org.hibernate.sql.results.graph.basic
Methods in org.hibernate.sql.results.graph.basic that return BasicValueConverter Modifier and Type Method Description BasicValueConverter<J,?>BasicResultAssembler. getValueConverter()Exposed for testing purposesConstructors in org.hibernate.sql.results.graph.basic with parameters of type BasicValueConverter Constructor Description BasicFetch(int valuesArrayPosition, FetchParent fetchParent, NavigablePath fetchablePath, BasicValuedModelPart valuedMapping, BasicValueConverter<T,?> valueConverter, FetchTiming fetchTiming, boolean canBasicPartFetchBeDelayed, DomainResultCreationState creationState)BasicFetch(int valuesArrayPosition, FetchParent fetchParent, NavigablePath fetchablePath, BasicValuedModelPart valuedMapping, BasicValueConverter<T,?> valueConverter, FetchTiming fetchTiming, boolean canBasicPartFetchBeDelayed, DomainResultCreationState creationState, boolean coerceResultType)BasicFetch(int valuesArrayPosition, FetchParent fetchParent, NavigablePath fetchablePath, BasicValuedModelPart valuedMapping, BasicValueConverter<T,?> valueConverter, FetchTiming fetchTiming, DomainResultCreationState creationState)BasicResult(int valuesArrayPosition, String resultVariable, JavaType<T> javaType, BasicValueConverter<T,?> valueConverter)BasicResult(int valuesArrayPosition, String resultVariable, JavaType<T> javaType, BasicValueConverter<T,?> valueConverter, NavigablePath navigablePath)BasicResult(int valuesArrayPosition, String resultVariable, JavaType<T> javaType, BasicValueConverter<T,?> valueConverter, NavigablePath navigablePath, boolean coerceResultType)BasicResultAssembler(int valuesArrayPosition, JavaType<J> assembledJavaType, BasicValueConverter<J,?> valueConverter)CoercingResultAssembler(int valuesArrayPosition, JavaType<J> assembledJavaType, BasicValueConverter<J,?> valueConverter) -
Uses of BasicValueConverter in org.hibernate.type
Classes in org.hibernate.type that implement BasicValueConverter Modifier and Type Class Description classCharBooleanConverterclassNumericBooleanConverterHandles conversion to/fromBooleanas0(false) or1(true)classTrueFalseConverterHandles conversion to/fromBooleanas'T'or'F'classYesNoConverterHandles conversion to/fromBooleanas'Y'or'N'Methods in org.hibernate.type that return BasicValueConverter Modifier and Type Method Description BasicValueConverter<T,?>BasicTypeReference. getConverter()default BasicValueConverter<T,?>BasicType. getValueConverter()BasicValueConverter<T[],?>ConvertedBasicArrayType. getValueConverter()BasicValueConverter<C,?>ConvertedBasicCollectionType. getValueConverter()BasicValueConverter<J,?>ConvertedBasicType. getValueConverter()BasicValueConverter<J,Object>CustomType. getValueConverter()BasicValueConverter<T,Object>EnumType. getValueConverter()Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.type with parameters of type BasicValueConverter Constructor Description BasicTypeReference(String name, Class<? extends T> javaType, int sqlTypeCode, BasicValueConverter<T,?> converter)ConvertedBasicArrayType(BasicType<T> baseDescriptor, JdbcType arrayJdbcType, JavaType<T[]> arrayTypeDescriptor, BasicValueConverter<T[],?> converter)ConvertedBasicCollectionType(BasicType<E> baseDescriptor, JdbcType arrayJdbcType, BasicCollectionJavaType<C,E> arrayTypeDescriptor, BasicValueConverter<C,?> converter) -
Uses of BasicValueConverter in org.hibernate.type.descriptor.converter.spi
Subinterfaces of BasicValueConverter in org.hibernate.type.descriptor.converter.spi Modifier and Type Interface Description interfaceEnumValueConverter<O extends Enum<O>,R>BasicValueConverterextension for enum-specific supportinterfaceJpaAttributeConverter<O,R>BasicValueConverterextension forAttributeConverter-specific support -
Uses of BasicValueConverter in org.hibernate.usertype
Methods in org.hibernate.usertype that return BasicValueConverter Modifier and Type Method Description BasicValueConverter<T,Object>StaticUserTypeSupport. getValueConverter()default BasicValueConverter<J,Object>UserType. getValueConverter()Returns the converter that this custom type uses for transforming from the domain type to the relational type, ornullif there is no conversion.Constructors in org.hibernate.usertype with parameters of type BasicValueConverter Constructor Description StaticUserTypeSupport(BasicJavaType<T> javaType, JdbcType jdbcType, BasicValueConverter<T,Object> valueConverter)StaticUserTypeSupport(BasicJavaType<T> javaType, JdbcType jdbcType, MutabilityPlan<T> mutabilityPlan, BasicValueConverter<T,Object> valueConverter)
-