Method Summary |
|
public Object | clone() Clone the column element. |
public boolean | equals(Object obj) Indicates whether some other object is "equal to" this one.
Parameters: obj - the reference object with which to compare. |
final Impl | getColumnImpl() Returns the implementation for the column. |
public Integer | getLength() Get the length of the column - for character type fields only. |
public Integer | getPrecision() Get the precision of the column - for numeric type fields only. |
public Integer | getScale() Get the scale of the column - for numeric type fields only. |
public int | getType() Get the value type of the column. |
public boolean | isBlobType() Returns whether the data type is blob type. |
public boolean | isCharacterType() Returns whether the data type is character. |
public boolean | isNullable() Returns whether the column is nullable. |
public boolean | isNumericType() Returns whether the data type is numeric. |
public void | setLength(Integer length) Set the length of the column - for character type fields only. |
public void | setNullable(boolean flag) Set whether the column is nullable. |
public void | setPrecision(Integer precision) Set the precision of the column - for numeric type fields only. |
public void | setScale(Integer scale) Set the scale of the column - for numeric type fields only. |
public void | setType(int type) Set the value type of the column. |
public String | toString() Returns a string representation of the object. |