Package | Description |
---|---|
org.castor.ddlgen |
This package contains functional classes, exceptions and Main class for
DDL generator.
|
org.castor.ddlgen.engine.db2 |
This package contains final classes to create DDL for DB2.
|
org.castor.ddlgen.engine.derby |
This package contains final classes to create DDL for Derby.
|
org.castor.ddlgen.engine.hsql |
This package contains final classes to create DDL for Hsql.
|
org.castor.ddlgen.engine.mssql |
This package contains final classes to create DDL for Microsoft SQL Server.
|
org.castor.ddlgen.engine.mysql |
This package contains final classes to create DDL for MySQL.
|
org.castor.ddlgen.engine.oracle |
This package contains final classes to create DDL for Oracle.
|
org.castor.ddlgen.engine.pointbase |
This package contains final classes to create DDL for PointBase.
|
org.castor.ddlgen.engine.postgresql |
This package contains final classes to create DDL for PostgreSQL.
|
org.castor.ddlgen.engine.sapdb |
This package contains final classes to create DDL for SapDB.
|
org.castor.ddlgen.engine.sybase |
This package contains final classes to create DDL for Sybase.
|
org.castor.ddlgen.schemaobject |
This package contains SchemaObject's for ddl generation including Table, Field,
KeyGenerator, Index, Schema,ForeignKey and PrimaryKey.
|
org.castor.ddlgen.typeinfo |
This package contains various type definitions which implement the TypeInfo
interface.
|
Modifier and Type | Method and Description |
---|---|
DDLGenConfiguration |
AbstractGenerator.getConfiguration()
Get configuration of generator.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
AbstractTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
AbstractGenerator(DDLGenConfiguration configuration)
Constructor for AbstractGenerator.
|
AbstractTypeMapper(DDLGenConfiguration conf)
Construct an abstract TypeMapper using given configuration to get default
parameters for parameterized types.
|
GeneratorRegistry(DDLGenConfiguration config)
Construct an instance of each generator specified in given configuration.
|
KeyGeneratorRegistry(DDLGenConfiguration config)
Construct an instance of each key generator factory specified in given
configuration.
|
Modifier and Type | Method and Description |
---|---|
protected void |
Db2TypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
Db2Generator(DDLGenConfiguration configuration)
Constructor for Db2Generator.
|
Db2TypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for DB2 database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DerbyTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
DerbyGenerator(DDLGenConfiguration configuration)
Constructor for DerbyGenerator.
|
DerbyTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for Derby database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
HsqlTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
HsqlGenerator(DDLGenConfiguration configuration)
Constructor for HsqlGenerators.
|
HsqlTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for MySQL database using given configuration to
get default parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
MssqlTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
MssqlGenerator(DDLGenConfiguration configuration)
Constructor for MssqlGenerator.
|
MssqlTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for Oracle database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
MysqlTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
MysqlGenerator(DDLGenConfiguration configuration)
Constructor for MysqlGenerator.
|
MysqlTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for MySQL database using given configuration to
get default parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
OracleTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
OracleGenerator(DDLGenConfiguration configuration)
Constructor for OracleGenerator.
|
OracleTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for Oracle database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PointBaseTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
PointBaseGenerator(DDLGenConfiguration configuration)
Constructor for PointBaseGenerator.
|
PointBaseTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for PointBase database using given configuration to
get default parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PostgresqlTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
PostgresqlGenerator(DDLGenConfiguration configuration)
Constructor for PostgresqlGenerator.
|
PostgresqlTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for MySQL database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SapdbTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
SapdbGenerator(DDLGenConfiguration configuration)
Constructor for SapdbGenerator.
|
SapdbTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for Sapdb database using given configuration to get default
parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SybaseTypeMapper.initialize(DDLGenConfiguration conf)
Initialize map of known types using given configuration to get default parameters
for parameterized types.
|
Constructor and Description |
---|
SybaseGenerator(DDLGenConfiguration configuration)
Constructor for SybaseGenerator.
|
SybaseTypeMapper(DDLGenConfiguration conf)
Construct a TypeMapper for Sybase database using given configuration to
get default parameters for parameterized types.
|
Modifier and Type | Method and Description |
---|---|
DDLGenConfiguration |
AbstractSchemaObject.getConfiguration()
Get configuration of the schema object.
|
DDLGenConfiguration |
SchemaObject.getConfiguration()
Get configuration of the schema object.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractSchemaObject.setConfiguration(DDLGenConfiguration config)
Set configuration of the schema object.
|
void |
SchemaObject.setConfiguration(DDLGenConfiguration config)
Set configuration of the schema object.
|
Constructor and Description |
---|
LobType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
OptionalLengthType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
OptionalLengthType(String jdbcType,
String sqlType,
String postfix,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
OptionalPrecisionDecimalsType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
OptionalPrecisionType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
RequiredLengthType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
RequiredLengthType(String jdbcType,
String sqlType,
String postfix,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
RequiredPrecisionType(String jdbcType,
String sqlType,
DDLGenConfiguration conf)
Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
|
Copyright © 2013. All rights reserved.