public static enum RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus extends Enum<RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus>
| Enum Constant and Description |
|---|
CANNOT_BUILD_REMOTELY
Indicates that this build cannot be performed remotely.
|
COMPLETED
Indicates that the build is completed.
|
QUEUED
Indicates that the build is waiting in some queue.
|
RUNNING
Indicates that the build is running.
|
| Modifier and Type | Method and Description |
|---|---|
static RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus CANNOT_BUILD_REMOTELY
If the build cannot be performed remotely, this must be its initial and only
status after calling the RemoteBuilderPlugin.submitBuild(org.azyva.dragom.model.Version).
public static final RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus QUEUED
public static final RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus RUNNING
public static final RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus COMPLETED
public static RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus[] values()
for (RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus c : RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus.values()) System.out.println(c);
public static RemoteBuilderPlugin.RemoteBuildHandle.RemoteBuildStatus 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 © 2015–2017 AZYVA INC.. All rights reserved.