public enum ProjectPermissions extends java.lang.Enum<ProjectPermissions> implements EnumConverter<ProjectPermissions>
| Enum Constant and Description |
|---|
OWN |
RESTRICTED |
| Modifier and Type | Method and Description |
|---|---|
static ProjectPermissions |
from(java.lang.String value) |
java.lang.String |
to(ProjectPermissions value) |
static ProjectPermissions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectPermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectPermissions OWN
public static final ProjectPermissions RESTRICTED
public static ProjectPermissions[] values()
for (ProjectPermissions c : ProjectPermissions.values()) System.out.println(c);
public static ProjectPermissions 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 ProjectPermissions from(java.lang.String value)
public java.lang.String to(ProjectPermissions value)
to in interface EnumConverter<ProjectPermissions>