public enum DeploySetAction extends Enum<DeploySetAction>
| Enum Constant and Description |
|---|
create
Create a deploy set
|
list
Query the user's deployment set list
|
modifyAttribute
Delete a deploy set with deployId
|
| Modifier and Type | Method and Description |
|---|---|
static DeploySetAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploySetAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploySetAction list
public static final DeploySetAction create
public static final DeploySetAction modifyAttribute
public static DeploySetAction[] values()
for (DeploySetAction c : DeploySetAction.values()) System.out.println(c);
public static DeploySetAction 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 © 2020. All rights reserved.