Enum VespaChangeRequest.Status
- java.lang.Object
-
- java.lang.Enum<VespaChangeRequest.Status>
-
- com.yahoo.vespa.hosted.controller.api.integration.vcmr.VespaChangeRequest.Status
-
- All Implemented Interfaces:
Serializable,Comparable<VespaChangeRequest.Status>
- Enclosing class:
- VespaChangeRequest
public static enum VespaChangeRequest.Status extends Enum<VespaChangeRequest.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETEDIN_PROGRESSNOOPPENDING_ACTIONPENDING_ASSESSMENTREADYREQUIRES_OPERATOR_ACTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VespaChangeRequest.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static VespaChangeRequest.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETED
public static final VespaChangeRequest.Status COMPLETED
-
READY
public static final VespaChangeRequest.Status READY
-
IN_PROGRESS
public static final VespaChangeRequest.Status IN_PROGRESS
-
PENDING_ACTION
public static final VespaChangeRequest.Status PENDING_ACTION
-
PENDING_ASSESSMENT
public static final VespaChangeRequest.Status PENDING_ASSESSMENT
-
REQUIRES_OPERATOR_ACTION
public static final VespaChangeRequest.Status REQUIRES_OPERATOR_ACTION
-
NOOP
public static final VespaChangeRequest.Status NOOP
-
-
Method Detail
-
values
public static VespaChangeRequest.Status[] 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 (VespaChangeRequest.Status c : VespaChangeRequest.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VespaChangeRequest.Status 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
-
-