public enum PermissionAction extends java.lang.Enum<PermissionAction>
| Enum Constant and Description |
|---|
ALL
Indicates that the user has permission to perform the action on all items in the folder.
|
NONE
Indicates that the user does not have permission to perform the action on any items in the folder.
|
OWNED
Indicates that the user has permission to perform the action on the items in the folder that the user owns.
|
| Modifier and Type | Method and Description |
|---|---|
static PermissionAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PermissionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionAction OWNED
public static final PermissionAction ALL
public static final PermissionAction NONE
public static PermissionAction[] values()
for (PermissionAction c : PermissionAction.values()) System.out.println(c);
public static PermissionAction 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