public enum FabricType extends java.lang.Enum<FabricType>
| Enum Constant and Description |
|---|
CORP |
DEV |
EI |
NON_PROD |
PRE |
PROD |
QA |
STG |
TEST |
UAT |
| Modifier and Type | Method and Description |
|---|---|
static FabricType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static FabricType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FabricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FabricType DEV
public static final FabricType TEST
public static final FabricType QA
public static final FabricType UAT
public static final FabricType EI
public static final FabricType PRE
public static final FabricType STG
public static final FabricType NON_PROD
public static final FabricType PROD
public static final FabricType CORP
public static FabricType[] values()
for (FabricType c : FabricType.values()) System.out.println(c);
public static FabricType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<FabricType>public static FabricType fromValue(java.lang.String text)