Enum EFormRequestType

    • Enum Constant Detail

      • PUBLISH

        public static final EFormRequestType PUBLISH
        Formularveröffentlichung, nur PDF-Form und HTTP-Request
      • PREVIEW

        public static final EFormRequestType PREVIEW
        Formularvorschau, alle Formulartypen
      • PROVIDE

        public static final EFormRequestType PROVIDE
        Formularauslieferung/-aufruf, alle Formulartypen
      • PROCESS

        public static final EFormRequestType PROCESS
        Formulareingangsverarbeitung, nur PDF-Form und HTTP-Request
      • WORKFLOW

        public static final EFormRequestType WORKFLOW
        Special type of PROCESS that allows manipulation the workflow, such as not running actions of the new state.
      • PRINT

        public static final EFormRequestType PRINT
        Formularauslieferung zum Drucken eines Formulars
      • REVIEW

        public static final EFormRequestType REVIEW
        befüllte Formularauslieferung, alle Formulartypen ('Postfachbearbeitersicht'), Nur-Lese-Sicht für PDF-Form und HTTP-Request, Änderbarkeit nur für Xima-Formulare
      • ALIAS

        public static final EFormRequestType ALIAS
        Formularauslieferung über das FormVersionAliasServlet
    • Method Detail

      • values

        public static EFormRequestType[] 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 (EFormRequestType c : EFormRequestType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EFormRequestType 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