Enum Status.StatusState
- java.lang.Object
-
- java.lang.Enum<Status.StatusState>
-
- com.cdancy.bitbucket.rest.domain.build.Status.StatusState
-
- All Implemented Interfaces:
Serializable,Comparable<Status.StatusState>
- Enclosing class:
- Status
public static enum Status.StatusState extends Enum<Status.StatusState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILEDINPROGRESSSUCCESSFUL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Status.StatusStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Status.StatusState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESSFUL
public static final Status.StatusState SUCCESSFUL
-
FAILED
public static final Status.StatusState FAILED
-
INPROGRESS
public static final Status.StatusState INPROGRESS
-
-
Method Detail
-
values
public static Status.StatusState[] 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 (Status.StatusState c : Status.StatusState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Status.StatusState 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
-
-