public static enum Constants.DeploymentType extends Enum<Constants.DeploymentType>
| Enum Constant and Description |
|---|
ADVANCED |
CONFIGURED |
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static Constants.DeploymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.DeploymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.DeploymentType DEFAULT
public static final Constants.DeploymentType CONFIGURED
public static final Constants.DeploymentType ADVANCED
public static Constants.DeploymentType[] values()
for (Constants.DeploymentType c : Constants.DeploymentType.values()) System.out.println(c);
public static Constants.DeploymentType 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 nullCopyright © 2015. All rights reserved.