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