Package de.xima.fc.mdl.enums
Enum EExportToXmlField
- java.lang.Object
-
- java.lang.Enum<EExportToXmlField>
-
- de.xima.fc.mdl.enums.EExportToXmlField
-
- All Implemented Interfaces:
Serializable
,Comparable<EExportToXmlField>
public enum EExportToXmlField extends Enum<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 Constants Enum Constant Description CREATION_DATE
Include the creation date of the form record.ID
Include the ID of the form record.INBOX
Include the name of the inbox that contains the form record.META_DATA
Include the meta data of the form record, such as the date and version.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 Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EExportToXmlField
valueOf(String name)
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 Detail
-
CREATION_DATE
public static final EExportToXmlField CREATION_DATE
Include the creation date of the form record.
-
META_DATA
public static final EExportToXmlField META_DATA
Include the meta data of the form record, such as the date and version.
-
ID
public static final EExportToXmlField ID
Include the ID of the form record.
-
INBOX
public static final EExportToXmlField INBOX
Include the name of the inbox that contains the form record.
-
MODIFICATION_DATE
public static final EExportToXmlField MODIFICATION_DATE
Include the date of the most recent state change of the form record.
-
PROCESS_ID
public static final EExportToXmlField PROCESS_ID
Include the process ID (UUID) of the form record.
-
STATE
public static final EExportToXmlField STATE
Include the name of the current state of the form record.
-
SUBJECT
public static final EExportToXmlField SUBJECT
Include the subject of the form record.
-
TECHNICAL_FIELDS
public static final EExportToXmlField TECHNICAL_FIELDS
Include various technical fields such asxf-action
andxf-qualifier
.
-
VARIABLES
public static final EExportToXmlField VARIABLES
Include variable form fields (hidden input fields).
-
-
Method Detail
-
values
public static EExportToXmlField[] 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 (EExportToXmlField c : EExportToXmlField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EExportToXmlField 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
-
-