public enum DelegateFolderPermissionLevel extends java.lang.Enum<DelegateFolderPermissionLevel>
| Enum Constant and Description |
|---|
AUTHOR
The delegate has Author permissions.
|
CUSTOM
The delegate has Custom permissions.
|
EDITOR
The delegate has Editor permissions.
|
NONE
The delegate has no permission.
|
NOT_DEFINED
The delegate has not defined.
|
REVIEWER
The delegate has Reviewer permissions.
|
| Modifier and Type | Method and Description |
|---|---|
static DelegateFolderPermissionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DelegateFolderPermissionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegateFolderPermissionLevel EDITOR
public static final DelegateFolderPermissionLevel REVIEWER
public static final DelegateFolderPermissionLevel AUTHOR
public static final DelegateFolderPermissionLevel CUSTOM
public static final DelegateFolderPermissionLevel NONE
public static final DelegateFolderPermissionLevel NOT_DEFINED
public static DelegateFolderPermissionLevel[] values()
for (DelegateFolderPermissionLevel c : DelegateFolderPermissionLevel.values()) System.out.println(c);
public static DelegateFolderPermissionLevel 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 null