jetbrains.buildServer
Enum UserChangeStatus
java.lang.Object
java.lang.Enum<UserChangeStatus>
jetbrains.buildServer.UserChangeStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<UserChangeStatus>
public enum UserChangeStatus
- extends java.lang.Enum<UserChangeStatus>
Describes a status of a user change in VCS. This change may relate to several build
configurations, so the status isn't mapped directly to the status of a build configuration.
|
Method Summary |
static UserChangeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UserChangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are 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 |
CHECKED
public static final UserChangeStatus CHECKED
FAILED
public static final UserChangeStatus FAILED
FAILED_WITH_RESPONSIBLE
public static final UserChangeStatus FAILED_WITH_RESPONSIBLE
CANCELED
public static final UserChangeStatus CANCELED
PENDING
public static final UserChangeStatus PENDING
RUNNING_SUCCESSFULY
public static final UserChangeStatus RUNNING_SUCCESSFULY
RUNNING_FAILED
public static final UserChangeStatus RUNNING_FAILED
values
public static UserChangeStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (UserChangeStatus c : UserChangeStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static UserChangeStatus 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
java.lang.NullPointerException - if the argument is null