Package org.reviewboard.rbjenkins.common
Enum ReviewRequest.StatusUpdateState
- java.lang.Object
-
- java.lang.Enum<ReviewRequest.StatusUpdateState>
-
- org.reviewboard.rbjenkins.common.ReviewRequest.StatusUpdateState
-
- All Implemented Interfaces:
Serializable
,Comparable<ReviewRequest.StatusUpdateState>
- Enclosing class:
- ReviewRequest
public static enum ReviewRequest.StatusUpdateState extends Enum<ReviewRequest.StatusUpdateState>
Enumerates the possible states for a status update to be in.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR_STATE
FAILURE_STATE
PENDING_STATE
SUCCESS_STATE
TIMED_OUT_STATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static ReviewRequest.StatusUpdateState
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReviewRequest.StatusUpdateState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS_STATE
public static final ReviewRequest.StatusUpdateState SUCCESS_STATE
-
FAILURE_STATE
public static final ReviewRequest.StatusUpdateState FAILURE_STATE
-
TIMED_OUT_STATE
public static final ReviewRequest.StatusUpdateState TIMED_OUT_STATE
-
ERROR_STATE
public static final ReviewRequest.StatusUpdateState ERROR_STATE
-
PENDING_STATE
public static final ReviewRequest.StatusUpdateState PENDING_STATE
-
-
Method Detail
-
values
public static ReviewRequest.StatusUpdateState[] 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 (ReviewRequest.StatusUpdateState c : ReviewRequest.StatusUpdateState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReviewRequest.StatusUpdateState valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<ReviewRequest.StatusUpdateState>
-
-