Enum ImportScope
- All Implemented Interfaces:
Serializable
,Comparable<ImportScope>
,Constable
Specifies the scope when importing add-on configuration data from an XML file. Selected data will be imported into the {addon.label} dataset.
- Since:
- 2.7.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSpecifies that the import includes all CSV preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups.Specifies that the import includes data transfer configuration settings in the Application, Semantic model, Data model, Data mapping, and Path groups.Specifies that the import includes all Excel preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups.Specifies that the import includes data from the Reference data and Additional configuration groups.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.Specifies that the import includes data specific to XML configuration settings in the Application, Semantic model, Data model, Data mapping, and Path groups. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns theString
value of the import scope.static ImportScope
Returns theImportScope
instance corresponding to the value specified.static ImportScope
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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
GLOBAL_CONFIGURATION
Specifies that the import includes data from the Reference data and Additional configuration groups. -
EXCEL_PREFERENCES
Specifies that the import includes all Excel preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups. Additionally, the following tables from the Reference data group are included: Transformation function, Date time pattern, Validator, Style preference. -
CSV_PREFERENCES
Specifies that the import includes all CSV preference settings in the Application, Semantic model, Data model, Data mapping, and Path groups. Additionally, the following tables from the Reference data group are included: Transformation function, Date time pattern, Validator. -
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. Additionally, the following tables from the Reference data group are included: Transformation function, Date time pattern, Validator. -
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. Additionally, the following tables from the Reference data group are included: Transformation function, SQL data source, JNDI data source, Validator. -
DATA_TRANSFER_CONFIGURATION
Specifies that the import includes data transfer configuration settings in the Application, Semantic model, Data model, Data mapping, and Path groups. Additionally, the following tables from the Reference data group are included: Transformation function, Date time pattern, Validator.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
parse
Returns theImportScope
instance corresponding to the value specified. -
getValue
Returns theString
value of the import scope.
-