Class NestedTableDefinition
java.lang.Object
org.eclipse.persistence.tools.schemaframework.DatabaseObjectDefinition
org.eclipse.persistence.tools.schemaframework.NestedTableDefinition
- All Implemented Interfaces:
Serializable
,Cloneable
Purpose: Allow for creation of nested table types.
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.persistence.tools.schemaframework.DatabaseObjectDefinition
name, qualifier
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
appendTypeString
(Writer writer, org.eclipse.persistence.internal.sessions.AbstractSession session) INTERNAL: Append the type to the statementbuildCreationWriter
(org.eclipse.persistence.internal.sessions.AbstractSession session, Writer writer) INTERNAL: Return the DDL to create the varray.buildDeletionWriter
(org.eclipse.persistence.internal.sessions.AbstractSession session, Writer writer) INTERNAL: Return the DDL to drop the varray.getType()
PUBLIC: Return the type of the field.PUBLIC: Return the type of the field.int
PUBLIC: Return the size of the element field, this is only required for some field types.void
PUBLIC: Set the type of the field.void
setTypeName
(String typeName) PUBLIC: Set the type of the field.void
setTypeSize
(int typeSize) PUBLIC: Set the size of the element field, this is only required for some field types.Methods inherited from class org.eclipse.persistence.tools.schemaframework.DatabaseObjectDefinition
buildVPDCreationFunctionWriter, buildVPDCreationPolicyWriter, buildVPDDeletionWriter, clone, createDatabaseSchema, createDatabaseSchemaOnDatabase, createObject, createOnDatabase, dropDatabaseSchema, dropDatabaseSchemaOnDatabase, dropFromDatabase, dropObject, getDatabaseSchema, getFieldTypeDefinition, getFieldTypeDefinition, getFullName, getName, getQualifier, hasDatabaseSchema, postCreateObject, preDropObject, setName, setQualifier, shouldCreateDatabaseSchema, shouldCreateVPDCalls, toString
-
Field Details
-
typeSize
protected int typeSize -
type
-
typeName
-
-
Constructor Details
-
NestedTableDefinition
public NestedTableDefinition()
-
-
Method Details
-
appendTypeString
public void appendTypeString(Writer writer, org.eclipse.persistence.internal.sessions.AbstractSession session) throws ValidationException INTERNAL: Append the type to the statement- Parameters:
writer
- Target writer where to write type string.session
- Current session context.- Throws:
ValidationException
- When invalid or inconsistent data were found.
-
buildCreationWriter
public Writer buildCreationWriter(org.eclipse.persistence.internal.sessions.AbstractSession session, Writer writer) throws ValidationException INTERNAL: Return the DDL to create the varray.- Specified by:
buildCreationWriter
in classDatabaseObjectDefinition
- Throws:
ValidationException
-
buildDeletionWriter
public Writer buildDeletionWriter(org.eclipse.persistence.internal.sessions.AbstractSession session, Writer writer) throws ValidationException INTERNAL: Return the DDL to drop the varray.- Specified by:
buildDeletionWriter
in classDatabaseObjectDefinition
- Throws:
ValidationException
-
getType
PUBLIC: Return the type of the field. This should be set to a java class, such as String.class, Integer.class or Date.class. -
getTypeName
PUBLIC: Return the type of the field. This is the exact DB type name, which can be used instead of the Java class. -
getTypeSize
public int getTypeSize()PUBLIC: Return the size of the element field, this is only required for some field types. -
setType
PUBLIC: Set the type of the field. This should be set to a java class, such as String.class, Integer.class or Date.class. -
setTypeName
PUBLIC: Set the type of the field. This is the exact DB type name, which can be used instead of the Java class. -
setTypeSize
public void setTypeSize(int typeSize) PUBLIC: Set the size of the element field, this is only required for some field types.
-