Enum RAccessCertificationCampaignState
- java.lang.Object
-
- java.lang.Enum<RAccessCertificationCampaignState>
-
- com.evolveum.midpoint.repo.sql.data.common.enums.RAccessCertificationCampaignState
-
- All Implemented Interfaces:
SchemaEnum<AccessCertificationCampaignStateType>
,Serializable
,Comparable<RAccessCertificationCampaignState>
public enum RAccessCertificationCampaignState extends Enum<RAccessCertificationCampaignState> implements SchemaEnum<AccessCertificationCampaignStateType>
- Author:
- mederly
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSED
CREATED
IN_REMEDIATION
IN_REVIEW_STAGE
REVIEW_STAGE_DONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AccessCertificationCampaignStateType
getSchemaValue()
static RAccessCertificationCampaignState
valueOf(String name)
Returns the enum constant of this type with the specified name.static RAccessCertificationCampaignState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATED
public static final RAccessCertificationCampaignState CREATED
-
IN_REVIEW_STAGE
public static final RAccessCertificationCampaignState IN_REVIEW_STAGE
-
REVIEW_STAGE_DONE
public static final RAccessCertificationCampaignState REVIEW_STAGE_DONE
-
IN_REMEDIATION
public static final RAccessCertificationCampaignState IN_REMEDIATION
-
CLOSED
public static final RAccessCertificationCampaignState CLOSED
-
-
Method Detail
-
values
public static RAccessCertificationCampaignState[] 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 (RAccessCertificationCampaignState c : RAccessCertificationCampaignState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RAccessCertificationCampaignState 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
-
getSchemaValue
public AccessCertificationCampaignStateType getSchemaValue()
- Specified by:
getSchemaValue
in interfaceSchemaEnum<AccessCertificationCampaignStateType>
-
-