| |
|
| java.lang.Object org.netbeans.lib.ddl.impl.AbstractTableColumn org.netbeans.lib.ddl.impl.TableColumn
CHECK | final public static String CHECK(Code) | | String constant for column check
|
CHECK_CONSTRAINT | final public static String CHECK_CONSTRAINT(Code) | | String constant for check constraint
|
COLUMN | final public static String COLUMN(Code) | | String constant for column type
|
FOREIGN_KEY | final public static String FOREIGN_KEY(Code) | | String constant for foreign key
|
FOREIGN_KEY_CONSTRAINT | final public static String FOREIGN_KEY_CONSTRAINT(Code) | | String constant for foreign key constraint
|
PRIMARY_KEY | final public static String PRIMARY_KEY(Code) | | String constant for primary key
|
PRIMARY_KEY_CONSTRAINT | final public static String PRIMARY_KEY_CONSTRAINT(Code) | | String constant for primary key constraint
|
UNIQUE | final public static String UNIQUE(Code) | | String constant for unique column type
|
UNIQUE_CONSTRAINT | final public static String UNIQUE_CONSTRAINT(Code) | | String constant for unique constraint
|
constraintColumns | Vector constraintColumns(Code) | | Table constraint columns
|
decsize | int decsize(Code) | | Column decimal size
|
nullable | boolean nullable(Code) | | Null allowed
|
serialVersionUID | final static long serialVersionUID(Code) | | |
size | int size(Code) | | Column size
|
type | int type(Code) | | Column type
|
TableColumn | public TableColumn()(Code) | | Constructor
|
getCheckCondition | public String getCheckCondition()(Code) | | Returns column check condition
|
getColumnProperties | public Map getColumnProperties(AbstractCommand cmd) throws DDLException(Code) | | Returns properties and it's values supported by this object.
object.name Name of the object; use setObjectName()
object.owner Name of the object; use setObjectOwner()
column.size Size of column
column.decsize Deimal size of size
column.type Type of column
default.value Condition of column
Throws DDLException if object name is not specified.
|
getColumnSize | public int getColumnSize()(Code) | | Returns column size
|
getColumnType | public int getColumnType()(Code) | | Returns type of column
|
getDecimalSize | public int getDecimalSize()(Code) | | Returns decimal digits of column
|
getDefaultValue | public String getDefaultValue()(Code) | | Returns default value of column
|
getTableConstraintColumns | public Vector getTableConstraintColumns()(Code) | | Returns table constraint columns
|
isNullAllowed | public boolean isNullAllowed()(Code) | | Nulls allowed?
|
setCheckCondition | public void setCheckCondition(String val)(Code) | | Sets column check condition
|
setColumnSize | public void setColumnSize(int csize)(Code) | | Sets size of column
|
setColumnType | public void setColumnType(int columnType)(Code) | | Sets type of column
|
setDecimalSize | public void setDecimalSize(int dsize)(Code) | | Sets decimal digits of column
|
setDefaultValue | public void setDefaultValue(String val)(Code) | | Sets default value of column
|
setNullAllowed | public void setNullAllowed(boolean flag)(Code) | | Sets null property
|
setTableConstraintColumns | public void setTableConstraintColumns(Vector columns)(Code) | | Sets column check condition
|
|
|
|