public enum ProjectRoles extends Enum<ProjectRoles>
| Enum Constant and Description |
|---|
co_applicant |
lead_applicant |
project_leader |
project_manager |
project_member |
workpackage_leader |
| Modifier and Type | Method and Description |
|---|---|
static ProjectRoles |
mapStringToEnum(String input) |
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 co_applicant
public static final ProjectRoles lead_applicant
public static final ProjectRoles project_leader
public static final ProjectRoles project_manager
public static final ProjectRoles project_member
public static final ProjectRoles workpackage_leader
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 nullpublic static ProjectRoles mapStringToEnum(String input)
Copyright © 2026. All rights reserved.