Enum EStatusTyp

    • Enum Constant Detail

      • EINGEGANGEN

        public static final EStatusTyp EINGEGANGEN
        Deprecated.
        Beschreibt den Status in dem alle Vorgang standardmäßig angelegt werden. Status dieses Typs können nicht gelöscht werden.
      • FEHLER

        @Deprecated
        public static final EStatusTyp FEHLER
        Deprecated.
        Beschreibt den Status in dem alle Vorgang standardmäßig angelegt werden, deren Workflowabarbeitung Fehler verursachte. Status dieses Typs können nicht gelöscht werden.
      • STANDARD

        public static final EStatusTyp STANDARD
        Deprecated.
        Beschreibt den Status der von einem Nutzer angelegt wurde und an beliebiger Stelle in der Workflowdefinition stehen kann.
      • SYSTEM

        public static final EStatusTyp SYSTEM
        Deprecated.
    • Method Detail

      • values

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

        public static EStatusTyp valueOf​(String name)
        Deprecated.
        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