类 SyntheticProperty
- java.lang.Object
-
- org.hibernate.mapping.Property
-
- org.hibernate.mapping.SyntheticProperty
-
- 所有已实现的接口:
Serializable,MetaAttributable
public class SyntheticProperty extends Property
Models a property which does not actually exist in the model. It is created by Hibernate during the metamodel binding process.- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 SyntheticProperty()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanisSynthetic()Does this property represent a synthetic property?-
从类继承的方法 org.hibernate.mapping.Property
getAccessorPropertyName, getCascade, getCascadeStyle, getColumnIterator, getColumnSpan, getGetter, getLazyGroup, getMetaAttribute, getMetaAttributes, getName, getPersistentClass, getPropertyAccessorName, getPropertyAccessStrategy, getSetter, getType, getValue, getValueGenerationStrategy, isBackRef, isBasicPropertyAccessor, isComposite, isInsertable, isLazy, isLob, isNaturalIdentifier, isOptimisticLocked, isOptional, isPrimitive, isSelectable, isUpdateable, isValid, resolveServiceRegistry, setCascade, setInsertable, setLazy, setLazyGroup, setLob, setMetaAttributes, setName, setNaturalIdentifier, setOptimisticLocked, setOptional, setPersistentClass, setPropertyAccessorName, setSelectable, setUpdateable, setValue, setValueGenerationStrategy, toString
-
-
-
-
方法详细资料
-
isSynthetic
public boolean isSynthetic()
从类复制的说明:PropertyDoes this property represent a synthetic property? A synthetic property is one we create during metamodel binding to represent a collection of columns but which does not represent a property physically available on the entity.- 覆盖:
isSynthetic在类中Property- 返回:
- True if synthetic; false otherwise.
-
-