Package de.xima.fc.workflow.error
Enum EFcImportFormValueFromXmlError
- java.lang.Object
-
- java.lang.Enum<EFcImportFormValueFromXmlError>
-
- de.xima.fc.workflow.error.EFcImportFormValueFromXmlError
-
- All Implemented Interfaces:
Serializable
,Comparable<EFcImportFormValueFromXmlError>
public enum EFcImportFormValueFromXmlError extends Enum<EFcImportFormValueFromXmlError>
Enumeration of the possible error codes for theEWorkflowNodeType.FC_IMPORT_FORM_VALUE_FROM_XML
action.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IO_ERROR
When a file could not be written to the file system.MALFORMED_URL
The given URL is invalid.NO_SOURCE_FILE_FOUND
when no source resource can be determinedSOURCE_FILE_FORMAT_ERROR
When the source file has a not supported file formatXML_PARSER_ERROR
If XML Parser could not be instantiate, or an XML parsing error occurredXSLT_TRANSFORM_FAILED
An XSLT template was specified, but the transform could not be applied.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EFcImportFormValueFromXmlError
valueOf(String name)
Returns the enum constant of this type with the specified name.static EFcImportFormValueFromXmlError[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IO_ERROR
public static final EFcImportFormValueFromXmlError IO_ERROR
When a file could not be written to the file system.
-
MALFORMED_URL
public static final EFcImportFormValueFromXmlError MALFORMED_URL
The given URL is invalid. XML from a external source.
-
NO_SOURCE_FILE_FOUND
public static final EFcImportFormValueFromXmlError NO_SOURCE_FILE_FOUND
when no source resource can be determined
-
SOURCE_FILE_FORMAT_ERROR
public static final EFcImportFormValueFromXmlError SOURCE_FILE_FORMAT_ERROR
When the source file has a not supported file format
-
XSLT_TRANSFORM_FAILED
public static final EFcImportFormValueFromXmlError XSLT_TRANSFORM_FAILED
An XSLT template was specified, but the transform could not be applied.
-
XML_PARSER_ERROR
public static final EFcImportFormValueFromXmlError XML_PARSER_ERROR
If XML Parser could not be instantiate, or an XML parsing error occurred
-
-
Method Detail
-
values
public static EFcImportFormValueFromXmlError[] 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 (EFcImportFormValueFromXmlError c : EFcImportFormValueFromXmlError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EFcImportFormValueFromXmlError 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 nameNullPointerException
- if the argument is null
-
-