Enum Class ExportIssueType

java.lang.Object
java.lang.Enum<ExportIssueType>
cdc.impex.exports.ExportIssueType
All Implemented Interfaces:
cdc.issues.IssueSeverityItem, Serializable, Comparable<ExportIssueType>, Constable

public enum ExportIssueType extends Enum<ExportIssueType> implements cdc.issues.IssueSeverityItem
  • Enum Constant Details

    • 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.
    • IGNORED_SHEET

      public static final ExportIssueType IGNORED_SHEET
    • 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.
    • NON_COMPLIANT_DATA

      public static final ExportIssueType NON_COMPLIANT_DATA
      Data is rejected by the checker.
      The severity can be any of IssueSeverity, as set by ColumnTemplate.getCheckFailureSeverity().
    • 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 Details

    • values

      public static ExportIssueType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ExportIssueType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class 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