static class ConversionDriver.CvtRunMode extends RunMode
| Modifier and Type | Field and Description |
|---|---|
private boolean |
length
Run the length statistics during the middle.
|
private boolean |
omitSchemaBrew
Flag indicating if the brew of schema DMOs will be omitted.
|
private boolean |
skipDBSchema
When
true, the physical DB schemas are not processed. |
| Constructor and Description |
|---|
CvtRunMode(boolean front,
boolean preproc,
boolean fschema,
boolean callgraph,
boolean middle,
boolean length,
boolean skipDBSchema,
boolean back,
boolean omitSchemaBrew)
Builds an instance and initializes all data.
|
| Modifier and Type | Method and Description |
|---|---|
RunMode |
merge(RunMode run)
Logically OR the given mode flags with the current mode flags and
return an instance that has all flags active that are active in
either of the 2 original input modes.
|
private final boolean length
private final boolean skipDBSchema
true, the physical DB schemas are not processed.private final boolean omitSchemaBrew
CvtRunMode(boolean front,
boolean preproc,
boolean fschema,
boolean callgraph,
boolean middle,
boolean length,
boolean skipDBSchema,
boolean back,
boolean omitSchemaBrew)
front - If the front phase should be executed.preproc - Force the preprocessor to run.fschema - Force the schema loading/fixups to run.callgraph - Force the callgraph generation to run.middle - If the middle phase should be executed.length - If the schema length statistics should be calculated.skipDBSchema - true if the physical DB schemas are not processed.back - If the code back end phase should be executed.omitSchemaBrew - Do not brew any Java ASTs for the schema part.