Enum ExportIssueType

    • Enum Constant Detail

      • GENERATE_WORKBOOK

        public static final ExportIssueType GENERATE_WORKBOOK
        A workbook is being created.
      • GENERATED_WORKBOOK

        public static final ExportIssueType GENERATED_WORKBOOK
        A workbook has been created.
      • GENERATE_SHEET

        public static final ExportIssueType GENERATE_SHEET
        A sheet is being created.
      • GENERATED_SHEET

        public static final ExportIssueType GENERATED_SHEET
        A sheet has been created.
      • MISSING_MANDATORY_DATA

        public static final ExportIssueType MISSING_MANDATORY_DATA
        No data for a mandatory column in a row.
      • NON_CONVERTIBLE_DATA

        public static final ExportIssueType NON_CONVERTIBLE_DATA
        Data can not be converted to expected declared data type.
      • APP_FAILURE

        public static final ExportIssueType APP_FAILURE
        The application failed to execute the required action, for reasons such as:
      • APP_INFO

        public static final ExportIssueType APP_INFO
        The application sends an informative message.
    • Method Detail

      • values

        public static ExportIssueType[] 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 (ExportIssueType c : ExportIssueType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ExportIssueType 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
      • getSeverity

        public cdc.issues.IssueSeverity getSeverity()
        Specified by:
        getSeverity in interface cdc.issues.IssueSeverityItem