public static enum User.accessFlag extends java.lang.Enum<User.accessFlag>
Enum Constant and Description |
---|
editUserFlags
change various flags for given user
|
operateAs
act as given user: create items, login as it, etc
|
setItemsAccess
change users's ACL: provide to given user access to other items
|
Modifier and Type | Method and Description |
---|---|
long |
getValue() |
static User.accessFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static User.accessFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final User.accessFlag setItemsAccess
public static final User.accessFlag operateAs
public static final User.accessFlag editUserFlags
public static User.accessFlag[] values()
for (User.accessFlag c : User.accessFlag.values()) System.out.println(c);
public static User.accessFlag 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 long getValue()