Serialized Form


Package net.sourceforge.datagenerator.event

Class net.sourceforge.datagenerator.event.DataGeneratorEntityEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

GenerateEntityDef entityDef
The configuration of the entity whose data will be generated.


exception

java.lang.Exception exception
The exception causing the data generation of the entity to end.

Class net.sourceforge.datagenerator.event.DataGeneratorEvent extends java.util.EventObject implements Serializable

Serialized Fields

generateDef

GenerateDef generateDef
The configuration of the data generation.

Class net.sourceforge.datagenerator.event.DataGeneratorRowEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

GenerateEntityDef entityDef
The configuration of the entity being generated.


line

java.lang.String line
The line representing the row.


values

ColumnValue[] values
The column values of the row.


state

int state
The state of the row.


exception

java.lang.Exception exception
The exception that prevented the row from being generated.


Package net.sourceforge.jdbcexporter.event

Class net.sourceforge.jdbcexporter.event.ExportEntityEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

ExportEntityDef entityDef
The configuration of the entity being exported.


exception

java.lang.Exception exception
The exception causing the export of the entity to end.

Class net.sourceforge.jdbcexporter.event.ExportEntityRowEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

ExportEntityDef entityDef
The configuration of the entity being exported.


line

java.lang.String line
The line representing the row.


values

ColumnValue[] values
The column values of the row.


state

int state
The state of the row.


exception

java.lang.Exception exception
The exception that prevented the row from being exported.

Class net.sourceforge.jdbcexporter.event.ExportEvent extends java.util.EventObject implements Serializable

Serialized Fields

exportDef

ExportDef exportDef
The configuration of the export.


engineClassname

java.lang.String engineClassname
The classname of the ExportEngine in use.


Package net.sourceforge.jdbcimporter

Class net.sourceforge.jdbcimporter.MalformedDataException extends java.lang.Exception implements Serializable

Serialized Fields

wrappedException

java.lang.Exception wrappedException
The wrapped exception.


row

java.lang.String row
The string representing the row.


column

int column
The index of the column that caused the exception.


Package net.sourceforge.jdbcimporter.event

Class net.sourceforge.jdbcimporter.event.ImportEntityBatchEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

ImportEntityDef entityDef
The configuration of the entity.


goodRows

int[] goodRows
The rows that were imported. The values are relative to the last execute batch.


badRows

int[] badRows
The rows that could not be imported. The values are relative to the last execute batch.


exception

java.lang.Exception exception
The cause of the rows that could not be imported.

Class net.sourceforge.jdbcimporter.event.ImportEntityEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

ImportEntityDef entityDef
The configuration of the entity being imported.


exception

java.lang.Exception exception
The exception causing the import of the entity to end.

Class net.sourceforge.jdbcimporter.event.ImportEntityRowEvent extends java.util.EventObject implements Serializable

Serialized Fields

entityDef

ImportEntityDef entityDef
The configuration of the entity being imported.


line

java.lang.String line
The line representing the row.


values

ColumnValue[] values
The column values of the row.


state

int state
The state of the row.


exception

java.lang.Exception exception
The exception that prevented the row from being imported.

Class net.sourceforge.jdbcimporter.event.ImportEvent extends java.util.EventObject implements Serializable

Serialized Fields

importDef

ImportDef importDef
The configuration of the import.


batchMode

boolean batchMode
The flag indicating that batch mode is being used.


engineClassname

java.lang.String engineClassname
The classname of the ImportEngine in use.


Package net.sourceforge.jdbcimporter.util

Class net.sourceforge.jdbcimporter.util.CustomMessageFormat extends java.text.Format implements Serializable

Serialized Fields

tokens

java.util.List tokens
The list of tokens in the pattern.


pattern

java.lang.String pattern
The pattern without the tokens.


arrayLength

int arrayLength
The maximum index of a token.

Class net.sourceforge.jdbcimporter.util.InvalidCustomObjectDefException extends java.lang.Exception implements Serializable

Serialized Fields

cause

java.lang.Exception cause
The root exception cause.

Class net.sourceforge.jdbcimporter.util.MultipleBatchUpdateException extends java.sql.BatchUpdateException implements Serializable

Serialized Fields

nextExceptions

java.sql.SQLException[] nextExceptions
The set of exception causes.