Package me.danwi.sqlex.core.query
Class Column.MetaData
- java.lang.Object
-
- me.danwi.sqlex.core.query.Column.MetaData
-
- Enclosing class:
- Column
public static class Column.MetaData extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetColumnName()longgetDecimal()java.sql.JDBCTypegetJdbcType()longgetLength()java.lang.StringgetTableName()java.lang.StringgetTypeName()booleanisAutoIncrement()booleanisBinary()booleanisHasDefaultValue()booleanisNotNull()booleanisPrimaryKey()booleanisUnique()booleanisUnsigned()
-
-
-
Method Detail
-
getTableName
public java.lang.String getTableName()
-
getColumnName
public java.lang.String getColumnName()
-
getTypeName
public java.lang.String getTypeName()
-
getJdbcType
public java.sql.JDBCType getJdbcType()
-
getLength
public long getLength()
-
isUnsigned
public boolean isUnsigned()
-
isBinary
public boolean isBinary()
-
getDecimal
public long getDecimal()
-
isPrimaryKey
public boolean isPrimaryKey()
-
isAutoIncrement
public boolean isAutoIncrement()
-
isUnique
public boolean isUnique()
-
isNotNull
public boolean isNotNull()
-
isHasDefaultValue
public boolean isHasDefaultValue()
-
-