Enum AccessCertificationCampaignStateType
- java.lang.Object
-
- java.lang.Enum<AccessCertificationCampaignStateType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.AccessCertificationCampaignStateType
-
- All Implemented Interfaces:
Serializable
,Comparable<AccessCertificationCampaignStateType>
public enum AccessCertificationCampaignStateType extends Enum<AccessCertificationCampaignStateType>
Java class for AccessCertificationCampaignStateType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AccessCertificationCampaignStateType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="created"/> <enumeration value="inReviewStage"/> <enumeration value="reviewStageDone"/> <enumeration value="inRemediation"/> <enumeration value="closed"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSED
Review and possibly remediation is over.CREATED
Campaign was created, but its first stage has not been started yet.IN_REMEDIATION
The last stage was closed, remediation (either automated or manual) is in progress.IN_REVIEW_STAGE
Review is being carried out, in a given stage.REVIEW_STAGE_DONE
A given review stage was done.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccessCertificationCampaignStateType
fromValue(String v)
String
value()
static AccessCertificationCampaignStateType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessCertificationCampaignStateType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATED
public static final AccessCertificationCampaignStateType CREATED
Campaign was created, but its first stage has not been started yet. Current stage number is 0.
-
IN_REVIEW_STAGE
public static final AccessCertificationCampaignStateType IN_REVIEW_STAGE
Review is being carried out, in a given stage. Current stage number is between 1 and N (number of stages).
-
REVIEW_STAGE_DONE
public static final AccessCertificationCampaignStateType REVIEW_STAGE_DONE
A given review stage was done. Next stage nor remediation (if any) has not started yet. Current stage number indicates the number of stage that has been recently done.
-
IN_REMEDIATION
public static final AccessCertificationCampaignStateType IN_REMEDIATION
The last stage was closed, remediation (either automated or manual) is in progress.
-
CLOSED
public static final AccessCertificationCampaignStateType CLOSED
Review and possibly remediation is over. The campaign is closed.
-
-
Method Detail
-
values
public static AccessCertificationCampaignStateType[] 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 (AccessCertificationCampaignStateType c : AccessCertificationCampaignStateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessCertificationCampaignStateType 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
-
value
public String value()
-
fromValue
public static AccessCertificationCampaignStateType fromValue(String v)
-
-