Package org.hibernate.tuple
Interface NonIdentifierAttribute
-
- All Superinterfaces:
Attribute,AttributeDefinition
- All Known Implementing Classes:
AbstractCompositionAttribute,AbstractEntityBasedAttribute,AbstractNonIdentifierAttribute,CompositeBasedAssociationAttribute,CompositeBasedBasicAttribute,CompositionBasedCompositionAttribute,EntityBasedAssociationAttribute,EntityBasedBasicAttribute,EntityBasedCompositionAttribute,StandardProperty,VersionProperty
public interface NonIdentifierAttribute extends Attribute, AttributeDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CascadeStylegetCascadeStyle()FetchModegetFetchMode()ValueGenerationgetValueGenerationStrategy()booleanisDirtyCheckable()booleanisDirtyCheckable(boolean hasUninitializedProperties)Deprecated.UseisDirtyCheckable()insteadbooleanisInsertable()booleanisLazy()booleanisNullable()booleanisUpdateable()booleanisVersionable()-
Methods inherited from interface org.hibernate.persister.walking.spi.AttributeDefinition
getName, getSource, getType
-
-
-
-
Method Detail
-
isLazy
boolean isLazy()
-
isInsertable
boolean isInsertable()
-
isUpdateable
boolean isUpdateable()
-
getValueGenerationStrategy
ValueGeneration getValueGenerationStrategy()
-
isNullable
boolean isNullable()
- Specified by:
isNullablein interfaceAttributeDefinition
-
isDirtyCheckable
@Deprecated boolean isDirtyCheckable(boolean hasUninitializedProperties)
Deprecated.UseisDirtyCheckable()instead
-
isDirtyCheckable
boolean isDirtyCheckable()
-
isVersionable
boolean isVersionable()
-
getCascadeStyle
CascadeStyle getCascadeStyle()
-
getFetchMode
FetchMode getFetchMode()
-
-