public enum LifecycleStageType extends Enum<LifecycleStageType>
Java class for LifecycleStageType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LifecycleStageType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Not Specified"/>
<enumeration value="In Development (pre-Alpha)"/>
<enumeration value="Internal or Alpha Testing"/>
<enumeration value="External or Beta Testing"/>
<enumeration value="Deployed (In production and actively developed)"/>
<enumeration value="Maintenance (only bug fixes)"/>
<enumeration value="Cannot Disclose"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANNOT_DISCLOSE |
DEPLOYED_IN_PRODUCTION_AND_ACTIVELY_DEVELOPED |
EXTERNAL_OR_BETA_TESTING |
IN_DEVELOPMENT_PRE_ALPHA |
INTERNAL_OR_ALPHA_TESTING |
MAINTENANCE_ONLY_BUG_FIXES |
NOT_SPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static LifecycleStageType |
fromValue(String v) |
String |
value() |
static LifecycleStageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleStageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleStageType NOT_SPECIFIED
public static final LifecycleStageType IN_DEVELOPMENT_PRE_ALPHA
public static final LifecycleStageType INTERNAL_OR_ALPHA_TESTING
public static final LifecycleStageType EXTERNAL_OR_BETA_TESTING
public static final LifecycleStageType DEPLOYED_IN_PRODUCTION_AND_ACTIVELY_DEVELOPED
public static final LifecycleStageType MAINTENANCE_ONLY_BUG_FIXES
public static final LifecycleStageType CANNOT_DISCLOSE
public static LifecycleStageType[] values()
for (LifecycleStageType c : LifecycleStageType.values()) System.out.println(c);
public static LifecycleStageType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static LifecycleStageType fromValue(String v)
Copyright © 2004-2013. All Rights Reserved.