Serialized Form


Package org.apache.ddlutils

Class org.apache.ddlutils.DatabaseOperationException extends DdlUtilsException implements Serializable

serialVersionUID: -3090677744278358036L

Class org.apache.ddlutils.DdlUtilsException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

serialVersionUID: 5624776387174310551L


Package org.apache.ddlutils.dynabean

Class org.apache.ddlutils.dynabean.SqlDynaBean extends org.apache.commons.beanutils.BasicDynaBean implements Serializable

serialVersionUID: -6946514447446174227L

Class org.apache.ddlutils.dynabean.SqlDynaClass extends org.apache.commons.beanutils.BasicDynaClass implements Serializable

serialVersionUID: -5768155698352911245L

Serialized Fields

_table

Table _table
The table for which this dyna class is defined.


_primaryKeyProperties

SqlDynaProperty[] _primaryKeyProperties
The primary key dyna properties.


_nonPrimaryKeyProperties

SqlDynaProperty[] _nonPrimaryKeyProperties
The non-primary key dyna properties.

Class org.apache.ddlutils.dynabean.SqlDynaException extends DdlUtilsException implements Serializable

serialVersionUID: 7904337501884384392L

Class org.apache.ddlutils.dynabean.SqlDynaProperty extends org.apache.commons.beanutils.DynaProperty implements Serializable

serialVersionUID: -4491018827449106588L

Serialized Fields

_column

Column _column
The column for which this dyna property is defined.


Package org.apache.ddlutils.io

Class org.apache.ddlutils.io.DataSinkException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

serialVersionUID: 6790909409839782437L

Class org.apache.ddlutils.io.DataWriterException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

serialVersionUID: 6254759931565130848L


Package org.apache.ddlutils.io.converters

Class org.apache.ddlutils.io.converters.ConversionException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

serialVersionUID: -1582788733576384843L


Package org.apache.ddlutils.model

Class org.apache.ddlutils.model.Column extends java.lang.Object implements Serializable

serialVersionUID: -6226348998874210093L

Serialized Fields

_name

java.lang.String _name
The name of the column.


_javaName

java.lang.String _javaName
The java name of the column (optional and unused by DdlUtils, for Torque compatibility).


_description

java.lang.String _description
The column's description.


_primaryKey

boolean _primaryKey
Whether the column is a primary key column.


_required

boolean _required
Whether the column is required, ie. it must not contain NULL.


_autoIncrement

boolean _autoIncrement
Whether the column's value is incremented automatically.


_typeCode

int _typeCode
The JDBC type code, one of the constants in Types.


_type

java.lang.String _type
The name of the JDBC type.


_size

java.lang.String _size
The size of the column for JDBC types that require/support this.


_sizeAsInt

java.lang.Integer _sizeAsInt
The size of the column for JDBC types that require/support this.


_scale

int _scale
The scale of the column for JDBC types that require/support this.


_defaultValue

java.lang.String _defaultValue
The default value.

Class org.apache.ddlutils.model.Database extends java.lang.Object implements Serializable

serialVersionUID: -3160443396757573868L

Serialized Fields

_name

java.lang.String _name
The name of the database model.


_idMethod

java.lang.String _idMethod
The method for generating primary keys (currently ignored).


_version

java.lang.String _version
The version of the model.


_tables

java.util.ArrayList<E> _tables
The tables.

Class org.apache.ddlutils.model.IndexColumn extends java.lang.Object implements Serializable

serialVersionUID: -5009366896427504739L

Serialized Fields

_ordinalPosition

int _ordinalPosition
The position within the owning index.


_column

Column _column
The indexed column.


_name

java.lang.String _name
The name of the column.


_size

java.lang.String _size
The size of the column in the index.

Class org.apache.ddlutils.model.IndexImpBase extends java.lang.Object implements Serializable

Serialized Fields

_name

java.lang.String _name
The name of the index.


_columns

java.util.ArrayList<E> _columns
The columns making up the index.

Class org.apache.ddlutils.model.JdbcTypeCategoryEnum extends org.apache.commons.lang.enums.ValuedEnum implements Serializable

serialVersionUID: -2695615907467866410L

Class org.apache.ddlutils.model.ModelException extends DdlUtilsException implements Serializable

serialVersionUID: -694578915559780711L

Class org.apache.ddlutils.model.NonUniqueIndex extends IndexImpBase implements Serializable

serialVersionUID: -3591499395114850301L

Class org.apache.ddlutils.model.Reference extends java.lang.Object implements Serializable

serialVersionUID: 6062467640266171664L

Serialized Fields

_sequenceValue

int _sequenceValue
The sequence value within the key.


_localColumn

Column _localColumn
The local column.


_foreignColumn

Column _foreignColumn
The foreign column.


_localColumnName

java.lang.String _localColumnName
The name of the local column.


_foreignColumnName

java.lang.String _foreignColumnName
The name of the foreign column.

Class org.apache.ddlutils.model.Table extends java.lang.Object implements Serializable

serialVersionUID: -5541154961302342608L

Serialized Fields

_catalog

java.lang.String _catalog
The catalog of this table as read from the database.


_schema

java.lang.String _schema
The table's schema.


_name

java.lang.String _name
The name.


_description

java.lang.String _description
A desription of the table.


_type

java.lang.String _type
The table's type as read from the database.


_columns

java.util.ArrayList<E> _columns
The columns in this table.


_foreignKeys

java.util.ArrayList<E> _foreignKeys
The foreign keys associated to this table.


_indices

java.util.ArrayList<E> _indices
The indices applied to this table.

Class org.apache.ddlutils.model.UniqueIndex extends IndexImpBase implements Serializable

serialVersionUID: -4097003126550294993L



Copyright © 2005-2010 Apache Software Foundation. All Rights Reserved.