接口的使用
org.hibernate.type.descriptor.java.MutabilityPlan
-
使用MutabilityPlan的程序包 程序包 说明 org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.converter Support for handling JPAAttributeConverterinstances as part of the HibernateTypesystem.org.hibernate.type.descriptor.java -
-
org.hibernate.type中MutabilityPlan的使用
返回MutabilityPlan的org.hibernate.type中的方法 修饰符和类型 方法 说明 protected MutabilityPlan<T>AbstractStandardBasicType. getMutabilityPlan()protected MutabilityPlan<T>AdaptedImmutableType. getMutabilityPlan() -
org.hibernate.type.descriptor.converter中MutabilityPlan的使用
实现MutabilityPlan的org.hibernate.type.descriptor.converter中的类 修饰符和类型 类 说明 classAttributeConverterMutabilityPlanImpl<T>The standard approach for defining a MutabilityPlan for converted (AttributeConverter) values is to always assume that they are immutable to make sure that dirty checking, deep copying and second-level caching all work properly no matter what.返回MutabilityPlan的org.hibernate.type.descriptor.converter中的方法 修饰符和类型 方法 说明 protected MutabilityPlan<T>AttributeConverterTypeAdapter. getMutabilityPlan() -
org.hibernate.type.descriptor.java中MutabilityPlan的使用
实现MutabilityPlan的org.hibernate.type.descriptor.java中的类 修饰符和类型 类 说明 classArrayMutabilityPlan<T>A mutability plan for arrays.static classBlobTypeDescriptor.BlobMutabilityPlanstatic classCalendarTypeDescriptor.CalendarMutabilityPlanstatic classClobTypeDescriptor.ClobMutabilityPlanstatic classDateTypeDescriptor.DateMutabilityPlanclassImmutableMutabilityPlan<T>Mutability plan for immutable objectsstatic classJdbcDateTypeDescriptor.DateMutabilityPlanstatic classJdbcTimestampTypeDescriptor.TimestampMutabilityPlanstatic classJdbcTimeTypeDescriptor.TimeMutabilityPlanclassMutableMutabilityPlan<T>Mutability plan for mutable objectsstatic classNClobTypeDescriptor.NClobMutabilityPlanstatic classSerializableTypeDescriptor.SerializableMutabilityPlan<S extends Serializable>返回MutabilityPlan的org.hibernate.type.descriptor.java中的方法 修饰符和类型 方法 说明 MutabilityPlan<T>AbstractTypeDescriptor. getMutabilityPlan()default MutabilityPlan<T>JavaTypeDescriptor. getMutabilityPlan()Retrieve the mutability plan for this Java type.参数类型为MutabilityPlan的org.hibernate.type.descriptor.java中的构造器 构造器 说明 AbstractTypeDescriptor(Class<T> type, MutabilityPlan<T> mutabilityPlan)Initialize a type descriptor for the given type.
-