Enum ImportScope

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ImportScope>

    public enum ImportScope
    extends java.lang.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
    • Enum Constant Summary

      Enum Constants 
      Enum Constant 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.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Returns the String value of the import scope.
      static ImportScope parse​(java.lang.String value)
      Returns the ImportScope instance corresponding to the value specified.
      static ImportScope valueOf​(java.lang.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.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

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

      • 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 Detail

      • values

        public static ImportScope[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ImportScope c : ImportScope.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ImportScope valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • parse

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

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