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 CascadeStylegetCascadeStyle()MutabilityPlangetMutabilityPlan()PropertyAccessgetPropertyAccess()booleanisIncludedInDirtyChecking()booleanisIncludedInOptimisticLocking()booleanisInsertable()booleanisNullable()booleanisSelectable()booleanisUpdatable()
-
-
-
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()
-
-