public enum DeployType extends Enum<DeployType>
| Enum Constant and Description |
|---|
Production |
Stage |
| Modifier and Type | Method and Description |
|---|---|
boolean |
compareId(String identificator) |
String |
getLabel() |
static DeployType |
getTypeFromId(String id) |
String |
toString() |
static DeployType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeployType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeployType Stage
public static final DeployType Production
public static DeployType[] values()
for (DeployType c : DeployType.values()) System.out.println(c);
public static DeployType 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 toString()
toString in class Enum<DeployType>public String getLabel()
public boolean compareId(String identificator)
public static DeployType getTypeFromId(String id)
Copyright © 2017. All Rights Reserved.