Package de.xima.fc.mdl.enums
Enum EStatusTyp
- java.lang.Object
-
- java.lang.Enum<EStatusTyp>
-
- de.xima.fc.mdl.enums.EStatusTyp
-
- All Implemented Interfaces:
Serializable,Comparable<EStatusTyp>
@Deprecated public enum EStatusTyp extends Enum<EStatusTyp>
Deprecated.Use the new workflow engine, e.g.EWorkflowStateTypeandWorkflowState.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EINGEGANGENDeprecated.FEHLERDeprecated.STANDARDDeprecated.Beschreibt denStatusder von einem Nutzer angelegt wurde und an beliebiger Stelle in der Workflowdefinition stehen kann.SYSTEMDeprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static EStatusTypvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static EStatusTyp[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EINGEGANGEN
public static final EStatusTyp EINGEGANGEN
Deprecated.
-
FEHLER
@Deprecated public static final EStatusTyp FEHLER
Deprecated.
-
STANDARD
public static final EStatusTyp STANDARD
Deprecated.Beschreibt denStatusder 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 nameNullPointerException- if the argument is null
-
-