com.pmease.quickbuild
Enum BuildRequest.Status
java.lang.Object
java.lang.Enum<BuildRequest.Status>
com.pmease.quickbuild.BuildRequest.Status
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BuildRequest.Status>
- Enclosing class:
- BuildRequest
public static enum BuildRequest.Status
- extends java.lang.Enum<BuildRequest.Status>
Method Summary |
static BuildRequest.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BuildRequest.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
WAITING_PROCESS
public static final BuildRequest.Status WAITING_PROCESS
WAITING_NODE
public static final BuildRequest.Status WAITING_NODE
CHECKING_BUILD_CONDITION
public static final BuildRequest.Status CHECKING_BUILD_CONDITION
RUNNING_BUILD
public static final BuildRequest.Status RUNNING_BUILD
COLLECTING_BUILD_METRICS
public static final BuildRequest.Status COLLECTING_BUILD_METRICS
SENDING_BUILD_NOTIFICATIONS
public static final BuildRequest.Status SENDING_BUILD_NOTIFICATIONS
AGGREGATING_METRICS
public static final BuildRequest.Status AGGREGATING_METRICS
values
public static BuildRequest.Status[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(BuildRequest.Status c : BuildRequest.Status.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static BuildRequest.Status valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
Copyright © 2005-2010 PMEase Inc. All Rights Reserved.