Serializable, Comparable<DeployStrategyType>public enum DeployStrategyType extends Enum<DeployStrategyType>
| Enum Constant | Description |
|---|---|
DEFAULT |
|
GUARANTEE_MINIMUM |
|
KEEP_CAPACITY |
|
SPIN_AND_REMOVE |
|
WHATEVER |
| Modifier and Type | Method | 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 WHATEVER
public static final DeployStrategyType DEFAULT
public static final DeployStrategyType GUARANTEE_MINIMUM
public static final DeployStrategyType SPIN_AND_REMOVE
public static final DeployStrategyType KEEP_CAPACITY
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 © 2017. All rights reserved.