Package org.hibernate.tuple
Class BaselineAttributeInformation
- java.lang.Object
-
- org.hibernate.tuple.BaselineAttributeInformation
-
public class BaselineAttributeInformation extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBaselineAttributeInformation.Builder
-
Constructor Summary
Constructors Constructor Description BaselineAttributeInformation(boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean dirtyCheckable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CascadeStylegetCascadeStyle()FetchModegetFetchMode()ValueGenerationgetValueGenerationStrategy()booleanisCheckable()booleanisDirtyCheckable()booleanisInsertable()booleanisLazy()booleanisNullable()booleanisUpdateable()booleanisVersionable()
-
-
-
Constructor Detail
-
BaselineAttributeInformation
public BaselineAttributeInformation(boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean dirtyCheckable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)
-
-
Method Detail
-
isLazy
public boolean isLazy()
-
isInsertable
public boolean isInsertable()
-
isUpdateable
public boolean isUpdateable()
-
getValueGenerationStrategy
public ValueGeneration getValueGenerationStrategy()
-
isNullable
public boolean isNullable()
-
isDirtyCheckable
public boolean isDirtyCheckable()
-
isVersionable
public boolean isVersionable()
-
getCascadeStyle
public CascadeStyle getCascadeStyle()
-
getFetchMode
public FetchMode getFetchMode()
-
isCheckable
public boolean isCheckable()
-
-