public enum EnvName extends Enum<EnvName>
Java class for EnvName.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnvName">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DESKTOP"/>
<enumeration value="DESKTOPECON"/>
<enumeration value="QA"/>
<enumeration value="SB"/>
<enumeration value="DEV"/>
<enumeration value="DEVB"/>
<enumeration value="DEVTEST"/>
<enumeration value="DEMO"/>
<enumeration value="PRODTEST"/>
<enumeration value="TESTB"/>
<enumeration value="PROD"/>
<enumeration value="ECON"/>
<enumeration value="ESDT"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEMO |
DESKTOP |
DESKTOPECON |
DEV |
DEVB |
DEVTEST |
ECON |
ESDT |
PROD |
PRODTEST |
QA |
SB |
TESTB |
| Modifier and Type | Method and Description |
|---|---|
static EnvName |
fromValue(String v) |
String |
value() |
static EnvName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnvName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvName DESKTOP
public static final EnvName DESKTOPECON
public static final EnvName QA
public static final EnvName SB
public static final EnvName DEV
public static final EnvName DEVB
public static final EnvName DEVTEST
public static final EnvName DEMO
public static final EnvName PRODTEST
public static final EnvName TESTB
public static final EnvName PROD
public static final EnvName ECON
public static final EnvName ESDT
public static EnvName[] values()
for (EnvName c : EnvName.values()) System.out.println(c);
public static EnvName 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()
Copyright © 2019. All rights reserved.