public static enum ProvisioningActivity.Phase extends Enum<ProvisioningActivity.Phase>
| Enum Constant and Description |
|---|
COMPLETED
The resources (if any) as well as the computer should be gone.
|
LAUNCHING
Slave agent is being launched,
|
OPERATING
The node is connected as Jenkins slave, possibly running builds.
|
PROVISIONING
Acquiring the slave is in progress.
|
| Modifier and Type | Method and Description |
|---|---|
static ProvisioningActivity.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProvisioningActivity.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProvisioningActivity.Phase PROVISIONING
public static final ProvisioningActivity.Phase LAUNCHING
public static final ProvisioningActivity.Phase OPERATING
public static final ProvisioningActivity.Phase COMPLETED
public static ProvisioningActivity.Phase[] values()
for (ProvisioningActivity.Phase c : ProvisioningActivity.Phase.values()) System.out.println(c);
public static ProvisioningActivity.Phase 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.