Package de.xima.fc.mdl.enums
Enum EExportToXmlField
- All Implemented Interfaces:
Serializable
,Comparable<EExportToXmlField>
Enumeration of additional fields that can be included in the generated XML file with the submitted form data.
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInclude the creation date of the form record.Include the ID of the form record.Include the name of the inbox that contains the form record.Include the meta data of the form record, such as the date and version.Include the date of the most recent state change of the form record.Include the process ID (UUID) of the form record.Include the name of the current state of the form record.Include the subject of the form record.Include various technical fields such asxf-action
andxf-qualifier
.Include variable form fields (hidden input fields). -
Method Summary
Modifier and TypeMethodDescriptionstatic EExportToXmlField
Returns the enum constant of this type with the specified name.static EExportToXmlField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATION_DATE
Include the creation date of the form record. -
META_DATA
Include the meta data of the form record, such as the date and version. -
ID
Include the ID of the form record. -
INBOX
Include the name of the inbox that contains the form record. -
MODIFICATION_DATE
Include the date of the most recent state change of the form record. -
PROCESS_ID
Include the process ID (UUID) of the form record. -
STATE
Include the name of the current state of the form record. -
SUBJECT
Include the subject of the form record. -
TECHNICAL_FIELDS
Include various technical fields such asxf-action
andxf-qualifier
. -
VARIABLES
Include variable form fields (hidden input fields).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-