Package | Description |
---|---|
org.deidentifier.arx.gui.view.impl.wizard | |
org.deidentifier.arx.io |
This package provides basic input/output functionality
|
Modifier and Type | Method and Description |
---|---|
ImportColumn |
ImportWizardModelColumn.getColumn() |
Modifier and Type | Method and Description |
---|---|
java.util.List<ImportColumn> |
ImportWizardModel.getEnabledColumns()
Returns list of enabled columns
This iterates over
ImportWizardModel.wizardColumns and returns only the columns
that are enabled ImportWizardModelColumn.isEnabled() . |
Modifier and Type | Method and Description |
---|---|
void |
ImportWizardModelColumn.setColumn(ImportColumn column) |
Constructor and Description |
---|
ImportWizardModelColumn(ImportColumn column)
Creates a new instance for the given column.
|
ImportWizardModelColumn(ImportColumn column,
boolean enabled)
Creates a new instance for the given column.
|
Modifier and Type | Class and Description |
---|---|
class |
ImportColumnCSV
Represents a single CSV data column
CSV columns are referred to by an index (see
ImportColumnIndexed ). |
class |
ImportColumnExcel
Represents a single Excel data column
Excel columns are referred to by an index (see
ImportColumnIndexed ). |
class |
ImportColumnIndexed
Superclass for column types that are only referred to by an index.
|
class |
ImportColumnJDBC
Represents a single JDBC data column
JDBC columns can be referred to by both an index (
IIndexColumn ) and
by name (IImportColumnNamed . |
Modifier and Type | Method and Description |
---|---|
java.util.List<ImportColumn> |
ImportConfiguration.getColumns()
Returns all added columns.
|
Modifier and Type | Method and Description |
---|---|
void |
ImportConfigurationJDBC.addColumn(ImportColumn column)
Adds a single column to import from
This makes sure that only
ImportColumnJDBC can be added,
otherwise an IllegalArgumentException will be thrown. |
void |
ImportConfigurationExcel.addColumn(ImportColumn column)
Adds a single column to import from
This makes sure that only
ImportColumnExcel can be added,
otherwise an IllegalArgumentException will be thrown. |
void |
ImportConfigurationCSV.addColumn(ImportColumn column)
Adds a single column to import from
This makes sure that only
ImportColumnCSV can be added, otherwise
an IllegalArgumentException will be thrown. |
abstract void |
ImportConfiguration.addColumn(ImportColumn column)
Adds a single column to import from.
|