public enum DeploymentSlot extends Enum<DeploymentSlot>
Enum Constant and Description |
---|
PRODUCTION |
STAGING |
Modifier and Type | Method and Description |
---|---|
static DeploymentSlot |
fromValue(String type) |
String |
toString() |
String |
value() |
static DeploymentSlot |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentSlot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentSlot PRODUCTION
public static final DeploymentSlot STAGING
public static DeploymentSlot[] values()
for (DeploymentSlot c : DeploymentSlot.values()) System.out.println(c);
public static DeploymentSlot 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 String toString()
toString
in class Enum<DeploymentSlot>
public static DeploymentSlot fromValue(String type)
Copyright © 2009-2013 jclouds. All Rights Reserved.