public abstract class AbstractColumn extends java.lang.Object implements Column
AbstractColumn
.| 限定符和类型 | 字段和说明 |
|---|---|
protected boolean |
autoincrement
The autoincrement.
|
protected int |
columnIndex
The column index.
|
protected int |
decimalDigits
小数位数.
|
protected java.lang.String |
defaultValue
The default value.
|
protected java.lang.String |
name
The name.
|
protected boolean |
nullable
The nullable.
|
protected boolean |
primaryKey
The primary key.
|
protected java.lang.String |
remark
The remark.
|
protected int |
size
The size.
|
protected java.sql.SQLType |
sqlType
The sql type.
|
protected Table |
table
The table.
|
protected int |
type
The type.
|
protected java.lang.String |
typeName
The type name.
|
| 构造器和说明 |
|---|
AbstractColumn() |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
int |
getColumnIndex()
返回columnIndex.
|
int |
getDecimalDigits()
返回decimalDigits.
|
java.lang.String |
getDefaultValue()
返回defaultValue.
|
java.lang.String |
getName()
返回name.
|
java.lang.String |
getRemark()
返回remark.
|
int |
getSize()
返回size.
|
java.sql.SQLType |
getSqlType()
返回sqlType.
|
Table |
getTable()
返回table.
|
int |
getType()
返回type.
|
java.lang.String |
getTypeName()
返回typeName.
|
int |
hashCode() |
boolean |
isAutoincrement()
返回autoincrement.
|
boolean |
isNullable()
返回nullable.
|
boolean |
isPrimaryKey()
返回primaryKey.
|
java.lang.String |
toString() |
protected java.lang.String name
protected java.sql.SQLType sqlType
protected int type
protected java.lang.String typeName
protected int size
protected java.lang.String remark
protected java.lang.String defaultValue
protected boolean nullable
protected int columnIndex
protected boolean primaryKey
protected int decimalDigits
protected boolean autoincrement
protected Table table
public int hashCode()
hashCode 在类中 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals 在类中 java.lang.Objectpublic java.lang.String toString()
toString 在类中 java.lang.Objectpublic java.lang.String getTypeName()
getTypeName 在接口中 Columnpublic java.lang.String getDefaultValue()
getDefaultValue 在接口中 Columnpublic boolean isNullable()
isNullable 在接口中 Columnpublic int getColumnIndex()
getColumnIndex 在接口中 Columnpublic boolean isPrimaryKey()
isPrimaryKey 在接口中 Columnpublic int getDecimalDigits()
getDecimalDigits 在接口中 Columnpublic boolean isAutoincrement()
isAutoincrement 在接口中 Columnpublic java.sql.SQLType getSqlType()
getSqlType 在接口中 Column