- All Superinterfaces:
DbObject,DbObjectWithComment
- All Known Implementing Classes:
DbColumnImpl
Meta-information about a column of a
table.- Since:
- 1.0.0
-
Method Summary
Methods inherited from interface io.github.mmm.orm.metadata.DbObjectWithComment
getComment
-
Method Details
-
getNullable
Boolean getNullable()- Returns:
Boolean.TRUEif nullable,Boolean.FALSEif value cannot benull, andnullif unknown.
-
getTypeCode
int getTypeCode()- Returns:
- the type of this column as
SQL type constant.
-
getTypeName
String getTypeName()- Returns:
- the type of this column as
String.
-
getSize
int getSize()- Returns:
- the size of this column (e.g. the maximum length of a string).
-
getDecimalDigits
int getDecimalDigits()- Returns:
- the number of decimal digits for numeric values. Will be
0for values that are not numeric.
-