public enum Allowed extends Enum<Allowed>
Enum Constant and Description |
---|
Anyone |
BusinessAdministrator |
Initiator |
Owner |
PotentialOwner |
TaskStakeholders |
Modifier and Type | Method and Description |
---|---|
static Allowed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Allowed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Allowed Owner
public static final Allowed Initiator
public static final Allowed PotentialOwner
public static final Allowed BusinessAdministrator
public static final Allowed TaskStakeholders
public static final Allowed Anyone
public static Allowed[] values()
for (Allowed c : Allowed.values()) System.out.println(c);
public static Allowed 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 nullCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.