Interface ImportConfigurationSpec<T extends Table>
- All Superinterfaces:
ConfigurationSpec<T>
- All Known Implementing Classes:
CSVImportConfigurationSpec
,FileImportConfigurationSpec
,SpreadsheetImportConfigurationSpec
,SQLImportConfigurationSpec
,TransferConfigurationSpec
,XMLImportConfigurationSpec
Specifies the configuration used for data import.
- Since:
- 2.3.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the specified import mode.boolean
Returnstrue
if all empty ornull
primary keys were checked before data import andfalse
if this verification was not performed.boolean
Returnstrue
if all empty ornull
values are ignored in the process of importing data.boolean
Returnstrue
if all triggers and constraints are disabled in the process of importing data.Methods inherited from interface com.orchestranetworks.addon.dex.configuration.ConfigurationSpec
getCurrentDataset, getCurrentTable, getServiceType, getSession, getSourceTableFilters, getSourceTables
-
Method Details
-
isImportForced
boolean isImportForced()Returnstrue
if all triggers and constraints are disabled in the process of importing data. -
getImportMode
ImportMode getImportMode()Returns the specified import mode. -
isEmptyOrNullValueIgnored
boolean isEmptyOrNullValueIgnored()Returnstrue
if all empty ornull
values are ignored in the process of importing data. -
isEmptyOrNullPrimaryKeyChecked
boolean isEmptyOrNullPrimaryKeyChecked()Returnstrue
if all empty ornull
primary keys were checked before data import andfalse
if this verification was not performed.
-