java.lang.Object
java.lang.Enum<ImportScope>
com.orchestranetworks.addon.dex.configuration.ImportScope
All Implemented Interfaces:
Serializable, Comparable<ImportScope>, Constable

public enum ImportScope extends Enum<ImportScope>
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 Constants
    Enum Constant
    Description
    Specifies 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 Type
    Method
    Description
    Returns the String value of the import scope.
    parse(String value)
    Returns the ImportScope instance corresponding to the value specified.
    Returns the enum constant of this type with the specified name.
    static ImportScope[]
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • GLOBAL_CONFIGURATION

      public static final ImportScope GLOBAL_CONFIGURATION
      Specifies that the import includes data from the Reference data and Additional configuration groups.
    • EXCEL_PREFERENCES

      public static final ImportScope 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

      public static final ImportScope 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

      public static final ImportScope 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

      public static final ImportScope 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

      public static final ImportScope 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

      public static ImportScope[] 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

      public static ImportScope valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • parse

      public static ImportScope parse(String value)
      Returns the ImportScope instance corresponding to the value specified.
    • getValue

      public String getValue()
      Returns the String value of the import scope.