Enum EventCategoryType

  • All Implemented Interfaces:
    Serializable, Comparable<EventCategoryType>

    public enum EventCategoryType
    extends Enum<EventCategoryType>

    Java class for EventCategoryType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="EventCategoryType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="resourceObjectEvent"/>
         <enumeration value="modelEvent"/>
         <enumeration value="workItemEvent"/>
         <enumeration value="workItemLifecycleEvent"/>
         <enumeration value="workItemAllocationEvent"/>
         <enumeration value="workItemCustomEvent"/>
         <enumeration value="workflowProcessEvent"/>
         <enumeration value="workflowEvent"/>
         <enumeration value="caseWorkItemEvent"/>
         <enumeration value="accessCertificationEvent"/>
         <enumeration value="certCampaignEvent"/>
         <enumeration value="certCampaignStageEvent"/>
         <enumeration value="certCaseEvent"/>
         <enumeration value="caseManagementEvent"/>
         <enumeration value="taskEvent"/>
         <enumeration value="customEvent"/>
         <enumeration value="policyRuleEvent"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • WORK_ITEM_LIFECYCLE_EVENT

        public static final EventCategoryType WORK_ITEM_LIFECYCLE_EVENT
        Subtype of workItemEvent. Represents the fact that a work item was created or deleted. Operation of ADD means that the work item was created. Operation of DELETE means that the work item was deleted (usually because it was completed).
      • WORK_ITEM_ALLOCATION_EVENT

        public static final EventCategoryType WORK_ITEM_ALLOCATION_EVENT
        Subtype of workItemEvent. Represents the fact that a work item was allocated to a user. (Either automatically when it is created or delegated, or manually when the user has claimed the item.) Operation of ADD means that the allocation was created. Operation of MODIFY means that the allocation is about to be deleted (probably as part of timed delegation/escalation or timed completion). Operation of DELETE means that the allocation was deleted (because of task completion/deletion or delegation).
      • WORK_ITEM_CUSTOM_EVENT

        public static final EventCategoryType WORK_ITEM_CUSTOM_EVENT
        Subtype of workItemEvent. Custom notification event emitted by "notify" timed action.
      • WORKFLOW_PROCESS_EVENT

        public static final EventCategoryType WORKFLOW_PROCESS_EVENT
      • ACCESS_CERTIFICATION_EVENT

        public static final EventCategoryType ACCESS_CERTIFICATION_EVENT
      • CERT_CAMPAIGN_STAGE_EVENT

        public static final EventCategoryType CERT_CAMPAIGN_STAGE_EVENT
    • Method Detail

      • values

        public static EventCategoryType[] 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 (EventCategoryType c : EventCategoryType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventCategoryType 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()