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