Package org.hibernate.metamodel.mapping
Interface AttributeMetadata
-
- All Known Subinterfaces:
AggregatedIdentifierMapping
,BasicEntityIdentifierMapping
,SingleAttributeIdentifierMapping
- All Known Implementing Classes:
AnonymousTupleBasicEntityIdentifierMapping
,AnonymousTupleEmbeddedEntityIdentifierMapping
,BasicEntityIdentifierMappingImpl
,EmbeddedIdentifierMappingImpl
,SimpleAttributeMetadata
public interface AttributeMetadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CascadeStyle
getCascadeStyle()
MutabilityPlan
getMutabilityPlan()
PropertyAccess
getPropertyAccess()
boolean
isIncludedInDirtyChecking()
boolean
isIncludedInOptimisticLocking()
boolean
isInsertable()
boolean
isNullable()
boolean
isSelectable()
boolean
isUpdatable()
-
-
-
Method Detail
-
getPropertyAccess
PropertyAccess getPropertyAccess()
-
getMutabilityPlan
MutabilityPlan getMutabilityPlan()
-
isNullable
boolean isNullable()
-
isInsertable
boolean isInsertable()
-
isUpdatable
boolean isUpdatable()
-
isSelectable
boolean isSelectable()
-
isIncludedInDirtyChecking
boolean isIncludedInDirtyChecking()
-
isIncludedInOptimisticLocking
boolean isIncludedInOptimisticLocking()
-
getCascadeStyle
default CascadeStyle getCascadeStyle()
-
-