public enum OperationRequestor extends java.lang.Enum<OperationRequestor> implements java.lang.Comparable<OperationRequestor>
Enum Constant and Description |
---|
BUILD |
COMMIT_HOOK |
SCHEDULE |
UNKNOWN |
USER |
VCS_TRIGGER_QUIET_PERIOD
When there is a detected change with VCS trigger with quiet period we want to make sure there are no other changes within given
quiet period for all VCS roots in the chain.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
java.lang.String |
toString() |
static OperationRequestor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationRequestor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationRequestor COMMIT_HOOK
public static final OperationRequestor BUILD
public static final OperationRequestor SCHEDULE
public static final OperationRequestor USER
public static final OperationRequestor VCS_TRIGGER_QUIET_PERIOD
public static final OperationRequestor UNKNOWN
public static OperationRequestor[] values()
for (OperationRequestor c : OperationRequestor.values()) System.out.println(c);
public static OperationRequestor valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
public java.lang.String toString()
toString
in class java.lang.Enum<OperationRequestor>