Package com.circleci.client.v2.model
Enum InlineResponse2002Items.StatusEnum
- java.lang.Object
-
- java.lang.Enum<InlineResponse2002Items.StatusEnum>
-
- com.circleci.client.v2.model.InlineResponse2002Items.StatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<InlineResponse2002Items.StatusEnum>
- Enclosing class:
- InlineResponse2002Items
public static enum InlineResponse2002Items.StatusEnum extends Enum<InlineResponse2002Items.StatusEnum>
Job status.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELEDFAILEDNOT_RUNSUCCESSUNAUTHORIZED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InlineResponse2002Items.StatusEnumfromValue(String value)StringgetValue()StringtoString()static InlineResponse2002Items.StatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static InlineResponse2002Items.StatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final InlineResponse2002Items.StatusEnum SUCCESS
-
NOT_RUN
public static final InlineResponse2002Items.StatusEnum NOT_RUN
-
FAILED
public static final InlineResponse2002Items.StatusEnum FAILED
-
CANCELED
public static final InlineResponse2002Items.StatusEnum CANCELED
-
UNAUTHORIZED
public static final InlineResponse2002Items.StatusEnum UNAUTHORIZED
-
-
Method Detail
-
values
public static InlineResponse2002Items.StatusEnum[] 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 (InlineResponse2002Items.StatusEnum c : InlineResponse2002Items.StatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InlineResponse2002Items.StatusEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<InlineResponse2002Items.StatusEnum>
-
fromValue
public static InlineResponse2002Items.StatusEnum fromValue(String value)
-
-