public enum PermissionUserAccess extends java.lang.Enum<PermissionUserAccess>
| Enum Constant and Description |
|---|
MANAGEMENT
The permission requires user management
|
MY
The permission is only applicable for the logged user
|
MY_OR_RELATIONSHIP
The permission is wither appliable to the logged user or a related user
|
NONE
The permission is not related to users
|
RELATIONSHIP
The permission requires user relationship
|
| Modifier and Type | Method and Description |
|---|---|
static PermissionUserAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PermissionUserAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionUserAccess NONE
public static final PermissionUserAccess MY
public static final PermissionUserAccess MANAGEMENT
public static final PermissionUserAccess RELATIONSHIP
public static final PermissionUserAccess MY_OR_RELATIONSHIP
public static PermissionUserAccess[] values()
for (PermissionUserAccess c : PermissionUserAccess.values()) System.out.println(c);
public static PermissionUserAccess 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