public enum ImportScope extends Enum<ImportScope>
Enum Constant and Description |
---|
CSV_PREFERENCES
Specifies that the import includes all CSV preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups.
|
DATA_TRANSFER_CONFIGURATION
Specifies that the import includes data transfer configuration settings in the Application, Semantic model, Data model, Data mapping, and Path groups.
|
EXCEL_PREFERENCES
Specifies that the import includes all Excel preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups.
|
GLOBAL_CONFIGURATION
Specifies that the import includes data from the Reference data and Additional configuration groups.
|
SQL_CONFIGURATION
Specifies that the import includes data specific to SQL configuration settings configuration data in the Application, Semantic model, Data model, Data mapping, and Path groups.
|
XML_CONFIGURATION
Specifies that the import includes data specific to XML configuration settings in the Application, Semantic model, Data model, Data mapping, and Path groups.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns the
String value of the import scope. |
static ImportScope |
parse(String value)
Returns the
ImportScope instance corresponding to the value specified. |
static ImportScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportScope GLOBAL_CONFIGURATION
public static final ImportScope EXCEL_PREFERENCES
public static final ImportScope CSV_PREFERENCES
public static final ImportScope XML_CONFIGURATION
public static final ImportScope SQL_CONFIGURATION
public static final ImportScope DATA_TRANSFER_CONFIGURATION
public static ImportScope[] values()
for (ImportScope c : ImportScope.values()) System.out.println(c);
public static ImportScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ImportScope parse(String value)
ImportScope
instance corresponding to the value specified.public String getValue()
String
value of the import scope.