Enum 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 Detail

      • 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.
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()