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="accountEvent"/> <enumeration value="userEvent"/> <enumeration value="workItemEvent"/> <enumeration value="workflowProcessEvent"/> <enumeration value="workflowEvent"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ACCOUNT_EVENT |
USER_EVENT |
WORK_ITEM_EVENT |
WORKFLOW_EVENT |
WORKFLOW_PROCESS_EVENT |
Modifier and Type | Method and Description |
---|---|
static EventCategoryType |
fromValue(String v) |
String |
value() |
static EventCategoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventCategoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventCategoryType ACCOUNT_EVENT
public static final EventCategoryType USER_EVENT
public static final EventCategoryType WORK_ITEM_EVENT
public static final EventCategoryType WORKFLOW_PROCESS_EVENT
public static final EventCategoryType WORKFLOW_EVENT
public static EventCategoryType[] values()
for (EventCategoryType c : EventCategoryType.values()) System.out.println(c);
public static EventCategoryType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static EventCategoryType fromValue(String v)
Copyright © 2013 evolveum. All rights reserved.