public enum UESActivityStateParticipant extends java.lang.Enum<UESActivityStateParticipant>
| Enum Constant and Description |
|---|
COMPETENT_ROLE
Allows setting by the role competent for the activity.
|
EXECUTIVE_ROLE
Allows setting by the executive role of the activity.
|
OTHERS
Allows setting by other authorized roles that are neither competent nor executive.
|
OWNER
Allows setting by the owner of the activity (who is both the competent and the executive role).
|
SYSTEM
Allows setting only by system.
|
| Modifier and Type | Method and Description |
|---|---|
static UESActivityStateParticipant |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESActivityStateParticipant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESActivityStateParticipant c : UESActivityStateParticipant.values()) System.out.println(c);
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null