public enum AssigneeType extends Enum<AssigneeType>
| Enum Constant and Description |
|---|
COMPONENT_LEAD |
PROJECT_DEFAULT |
PROJECT_LEAD |
UNASSIGNED |
| Modifier and Type | Method and Description |
|---|---|
static AssigneeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssigneeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssigneeType PROJECT_DEFAULT
public static final AssigneeType COMPONENT_LEAD
public static final AssigneeType PROJECT_LEAD
public static final AssigneeType UNASSIGNED
public static AssigneeType[] values()
for (AssigneeType c : AssigneeType.values()) System.out.println(c);
public static AssigneeType 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 © 2017 Atlassian. All rights reserved.