Package cdc.impex.exports
Enum Class ExportIssueType
- All Implemented Interfaces:
cdc.issues.IssueSeverityItem,Serializable,Comparable<ExportIssueType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe application failed to execute the required action, for reasons such as:The application sends an informative message.A sheet is being created.A workbook is being created.A sheet has been created.A workbook has been created.No data for a mandatory column in a row.Data is rejected by the checker.
The severity can be any ofIssueSeverity, as set byColumnTemplate.getCheckFailureSeverity().Data can not be converted to expected declared data type. -
Method Summary
Modifier and TypeMethodDescriptioncdc.issues.IssueSeveritystatic ExportIssueTypeReturns the enum constant of this class with the specified name.static ExportIssueType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GENERATE_WORKBOOK
A workbook is being created. -
GENERATED_WORKBOOK
A workbook has been created. -
GENERATE_SHEET
A sheet is being created. -
GENERATED_SHEET
A sheet has been created. -
IGNORED_SHEET
-
MISSING_MANDATORY_DATA
No data for a mandatory column in a row. -
NON_CONVERTIBLE_DATA
Data can not be converted to expected declared data type. -
NON_COMPLIANT_DATA
Data is rejected by the checker.
The severity can be any ofIssueSeverity, as set byColumnTemplate.getCheckFailureSeverity(). -
APP_FAILURE
The application failed to execute the required action, for reasons such as: -
APP_INFO
The application sends an informative message.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getSeverity
public cdc.issues.IssueSeverity getSeverity()- Specified by:
getSeverityin interfacecdc.issues.IssueSeverityItem
-