Enum ProjectStage
- java.lang.Object
-
- java.lang.Enum<ProjectStage>
-
- de.seitenbau.serviceportal.prozesspipeline.commons.config.ProjectStage
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ProjectStage>
public enum ProjectStage extends java.lang.Enum<ProjectStage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CERTIFIEDFUNCTIONAL_ANALYSISMODELLINGQUALITY_ASSURANCETECHNICAL_IMPLEMENTATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectStageasFormularStage()static ProjectStagevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ProjectStage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FUNCTIONAL_ANALYSIS
public static final ProjectStage FUNCTIONAL_ANALYSIS
-
MODELLING
public static final ProjectStage MODELLING
-
TECHNICAL_IMPLEMENTATION
public static final ProjectStage TECHNICAL_IMPLEMENTATION
-
QUALITY_ASSURANCE
public static final ProjectStage QUALITY_ASSURANCE
-
CERTIFIED
public static final ProjectStage CERTIFIED
-
-
Method Detail
-
values
public static ProjectStage[] 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 (ProjectStage c : ProjectStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProjectStage valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
asFormularStage
public ProjectStage asFormularStage()
-
-