|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Nested Class Summary | |
static interface |
Column.Name
|
static interface |
Column.Type
|
Method Summary | |
Column.Name |
getName()
Returns the columns name. |
java.lang.String |
getQName()
Returns the columns fully qualified name, which is getTable().getQName() + "." + getName() . |
Table |
getTable()
Returns the columns table. |
Column.Type |
getType()
Returns the columns type. |
boolean |
isBinaryColumn()
Returns whether this Column may be casted to a BinaryColumn . |
boolean |
isNullable()
Returns whether the column is nullable. |
boolean |
isPrimaryKeyPart()
Returns whether this column is part of the primary key. |
boolean |
isStringColumn()
Returns whether this Column may be casted to a StringColumn . |
void |
setNullable(boolean pNullable)
Sets whether the column is nullable. |
Method Detail |
public Table getTable()
Returns the columns table.
public Column.Name getName()
Returns the columns name.
public java.lang.String getQName()
Returns the columns fully qualified name, which is
getTable().getQName() + "." + getName()
.
public Column.Type getType()
Returns the columns type.
public boolean isPrimaryKeyPart()
Returns whether this column is part of the primary key.
public void setNullable(boolean pNullable)
Sets whether the column is nullable. By default columns are not nullable.
public boolean isNullable()
Returns whether the column is nullable. By default columns are not nullable.
public boolean isStringColumn()
Returns whether this Column may be casted to a StringColumn
.
public boolean isBinaryColumn()
Returns whether this Column may be casted to a BinaryColumn
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |