|
Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated) 11g Release 1 (11.1.1) B32476-04 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectoracle.toplink.tools.schemaframework.DatabaseObjectDefinition
oracle.toplink.tools.schemaframework.TableDefinition
public class TableDefinition
Purpose: Allow a generic way of creating tables on the different platforms.
| Field Summary |
|---|
| Fields inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition |
|---|
name, qualifier |
| Constructor Summary | |
|---|---|
TableDefinition()
|
|
| Method Summary | |
|---|---|
void |
addField(FieldDefinition field)
Add the field to the table. |
void |
addField(java.lang.String fieldName,
java.lang.Class type)
Add the field to the table, default sizes are used. |
void |
addField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
Add the field to the table. |
void |
addField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize,
int fieldSubSize)
Add the field to the table. |
void |
addField(java.lang.String fieldName,
java.lang.String typeName)
Add the field to the type to a nested type. |
void |
addForeignKeyConstraint(ForeignKeyConstraint foreignKey)
Add a foreign key constraint to the table. |
void |
addForeignKeyConstraint(java.lang.String name,
java.lang.String sourceField,
java.lang.String targetField,
java.lang.String targetTable)
Add a foreign key constraint to the table. |
void |
addIdentityField(java.lang.String fieldName,
java.lang.Class type)
Add the field to the table, default sizes are used. |
void |
addIdentityField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
Add the field to the table, default sizes are used. |
void |
addPrimaryKeyField(java.lang.String fieldName,
java.lang.Class type)
Add the field to the table, default sizes are used. |
void |
addPrimaryKeyField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
Add the field to the table, default sizes are used. |
void |
addUniqueKeyConstraint(java.lang.String name,
java.lang.String sourceField)
Add a unique key constraint to the table. |
void |
addUniqueKeyConstraint(java.lang.String name,
java.lang.String[] sourceFields)
Add a unique key constraint to the table. |
void |
addUniqueKeyConstraint(UniqueKeyConstraint uniqueKey)
Add a unique key constraint to the table. |
java.lang.Object |
clone()
Performs a deep copy of this table definition. |
java.util.Vector |
getFields()
|
java.util.Vector<ForeignKeyConstraint> |
getForeignKeys()
Returns the ForeignKeyConstraint list. |
java.util.Vector |
getPrimaryKeyFieldNames()
|
java.util.Vector<UniqueKeyConstraint> |
getUniqueKeys()
|
void |
setCreateSQLFiles(boolean genFlag)
|
void |
setFields(java.util.Vector fields)
|
void |
setForeignKeys(java.util.Vector<ForeignKeyConstraint> foreignKeys)
Set the ForeignKeyConstraint list. |
void |
setUniqueKeys(java.util.Vector<UniqueKeyConstraint> uniqueKeys)
|
| Methods inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition |
|---|
getName, getQualifier, setName, setQualifier, toString |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public TableDefinition()
| Method Detail |
|---|
public void addField(java.lang.String fieldName,
java.lang.Class type)
type - is the Java class type coresponding to the database type.
public void addField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
type - is the Java class type coresponding to the database type.
public void addField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize,
int fieldSubSize)
type - is the Java class type coresponding to the database type.
public void addField(java.lang.String fieldName,
java.lang.String typeName)
typeName - is the name of the nested type.public void addField(FieldDefinition field)
public void addForeignKeyConstraint(java.lang.String name,
java.lang.String sourceField,
java.lang.String targetField,
java.lang.String targetTable)
public void addUniqueKeyConstraint(java.lang.String name,
java.lang.String sourceField)
public void addUniqueKeyConstraint(java.lang.String name,
java.lang.String[] sourceFields)
public void addForeignKeyConstraint(ForeignKeyConstraint foreignKey)
public void addUniqueKeyConstraint(UniqueKeyConstraint uniqueKey)
public void addIdentityField(java.lang.String fieldName,
java.lang.Class type)
type - is the Java class type coresponding to the database type.
public void addIdentityField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
type - is the Java class type coresponding to the database type.
public void addPrimaryKeyField(java.lang.String fieldName,
java.lang.Class type)
type - is the Java class type coresponding to the database type.
public void addPrimaryKeyField(java.lang.String fieldName,
java.lang.Class type,
int fieldSize)
type - is the Java class type coresponding to the database type.public java.lang.Object clone()
clone in class DatabaseObjectDefinitionpublic java.util.Vector getFields()
public java.util.Vector<ForeignKeyConstraint> getForeignKeys()
public java.util.Vector<UniqueKeyConstraint> getUniqueKeys()
public java.util.Vector getPrimaryKeyFieldNames()
public void setFields(java.util.Vector fields)
public void setForeignKeys(java.util.Vector<ForeignKeyConstraint> foreignKeys)
public void setUniqueKeys(java.util.Vector<UniqueKeyConstraint> uniqueKeys)
public void setCreateSQLFiles(boolean genFlag)
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||