public enum ProjectWidePermission extends Enum<ProjectWidePermission>
This enum allows us to find out project-wide permission information about an issue-level permission.
| Enum Constant and Description |
|---|
ALL_ISSUES |
ISSUE_SPECIFIC |
NO_ISSUES |
| Modifier and Type | Method and Description |
|---|---|
static ProjectWidePermission |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectWidePermission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectWidePermission ALL_ISSUES
public static final ProjectWidePermission NO_ISSUES
public static final ProjectWidePermission ISSUE_SPECIFIC
public static ProjectWidePermission[] values()
for (ProjectWidePermission c : ProjectWidePermission.values()) System.out.println(c);
public static ProjectWidePermission 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 © 2002-2024 Atlassian. All Rights Reserved.