public enum UESActivityStateVisibility extends java.lang.Enum<UESActivityStateVisibility>
| Enum Constant and Description |
|---|
COMPETENT_ROLE
The activity in this state will be visible for the competent role.
|
EXECUTIVE_ROLE
The activity in this state will be visible for the executive role.
|
NOBODY
The activity in this state will not be visible for anybody.
|
| Modifier and Type | Method and Description |
|---|---|
static UESActivityStateVisibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESActivityStateVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESActivityStateVisibility c : UESActivityStateVisibility.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