Enum EExportToXmlField

    • 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.
      • 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 as xf-action and xf-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 name
        NullPointerException - if the argument is null