public enum ProjectRoles extends java.lang.Enum<ProjectRoles> implements EnumConverter<ProjectRoles>
| Enum Constant and Description |
|---|
DEVELOPER |
LANGUAGE_COORDINATOR |
MANAGER |
MEMBER |
PROOFREADER |
TRANSLATOR |
| Modifier and Type | Method and Description |
|---|---|
static ProjectRoles |
from(java.lang.String value) |
java.lang.String |
to(ProjectRoles v) |
static ProjectRoles |
valueOf(java.lang.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 MANAGER
public static final ProjectRoles DEVELOPER
public static final ProjectRoles TRANSLATOR
public static final ProjectRoles PROOFREADER
public static final ProjectRoles LANGUAGE_COORDINATOR
public static final ProjectRoles MEMBER
public static ProjectRoles[] values()
for (ProjectRoles c : ProjectRoles.values()) System.out.println(c);
public static ProjectRoles valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ProjectRoles from(java.lang.String value)
public java.lang.String to(ProjectRoles v)
to in interface EnumConverter<ProjectRoles>