Class AbstractScoreHibernateType
java.lang.Object
org.optaplanner.persistence.jpa.impl.score.AbstractScoreHibernateType
- All Implemented Interfaces:
org.hibernate.usertype.CompositeUserType
- Direct Known Subclasses:
BendableBigDecimalScoreHibernateType,BendableLongScoreHibernateType,BendableScoreHibernateType,HardMediumSoftBigDecimalScoreHibernateType,HardMediumSoftLongScoreHibernateType,HardMediumSoftScoreHibernateType,HardSoftBigDecimalScoreHibernateType,HardSoftLongScoreHibernateType,HardSoftScoreHibernateType,SimpleBigDecimalScoreHibernateType,SimpleLongScoreHibernateType,SimpleScoreHibernateType
@Deprecated(forRemoval=true)
public abstract class AbstractScoreHibernateType
extends Object
implements org.hibernate.usertype.CompositeUserType
Deprecated, for removal: This API element is subject to removal in a future version.
This class is Hibernate specific, because JPA 2.1's @Converter currently
cannot handle 1 class mapping to multiple SQL columns.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ScoreDefinitionDeprecated, for removal: This API element is subject to removal in a future version.protected org.hibernate.type.AbstractSingleColumnStandardBasicTypeDeprecated, for removal: This API element is subject to removal in a future version. -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionassemble(Serializable cached, org.hibernate.engine.spi.SharedSessionContractImplementor session, Object owner) Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.disassemble(Object value, org.hibernate.engine.spi.SharedSessionContractImplementor session) Deprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.protected intextractIntParameter(Properties parameterMap, String parameterName) Deprecated, for removal: This API element is subject to removal in a future version.String[]Deprecated, for removal: This API element is subject to removal in a future version.org.hibernate.type.Type[]Deprecated, for removal: This API element is subject to removal in a future version.getPropertyValue(Object o, int propertyIndex) Deprecated, for removal: This API element is subject to removal in a future version.intDeprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.nullSafeGet(ResultSet resultSet, String[] names, org.hibernate.engine.spi.SharedSessionContractImplementor session, Object owner) Deprecated, for removal: This API element is subject to removal in a future version.voidnullSafeSet(PreparedStatement statement, Object value, int parameterIndex, org.hibernate.engine.spi.SharedSessionContractImplementor session) Deprecated, for removal: This API element is subject to removal in a future version.replace(Object original, Object target, org.hibernate.engine.spi.SharedSessionContractImplementor session, Object owner) Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.voidsetPropertyValue(Object component, int property, Object value) Deprecated, for removal: This API element is subject to removal in a future version.
-
Field Details
-
scoreDefinition
Deprecated, for removal: This API element is subject to removal in a future version. -
type
protected org.hibernate.type.AbstractSingleColumnStandardBasicType typeDeprecated, for removal: This API element is subject to removal in a future version.
-
-
Constructor Details
-
AbstractScoreHibernateType
public AbstractScoreHibernateType()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
extractIntParameter
Deprecated, for removal: This API element is subject to removal in a future version. -
returnedClass
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
returnedClassin interfaceorg.hibernate.usertype.CompositeUserType
-
getPropertyNames
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getPropertyNamesin interfaceorg.hibernate.usertype.CompositeUserType
-
getPropertyTypes
public org.hibernate.type.Type[] getPropertyTypes()Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getPropertyTypesin interfaceorg.hibernate.usertype.CompositeUserType
-
getPropertyValue
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getPropertyValuein interfaceorg.hibernate.usertype.CompositeUserType
-
isMutable
public boolean isMutable()Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
isMutablein interfaceorg.hibernate.usertype.CompositeUserType
-
deepCopy
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
deepCopyin interfaceorg.hibernate.usertype.CompositeUserType
-
setPropertyValue
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
setPropertyValuein interfaceorg.hibernate.usertype.CompositeUserType
-
equals
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
equalsin interfaceorg.hibernate.usertype.CompositeUserType
-
hashCode
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
hashCodein interfaceorg.hibernate.usertype.CompositeUserType
-
CompositeUserType. The class will remain available in the OptaPlanner 8 releases to provide integration with Hibernate 5 but will be removed in OptaPlanner 9. To integrate thePlanningScorewith Hibernate 6, either use the score converters in theorg.optaplanner.persistence.jpa.api.score.buildinpackage or implement theCompositeUserTypeyourself.