public enum StandardUser extends java.lang.Enum<StandardUser>
| Enum Constant and Description |
|---|
ANONYMOUS
Defines the anonymous delegate that is used to define delegate permissions for unauthenticated users.
|
DEFAULT
Defines the default delegate that is used to define default delegation permissions.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
static StandardUser |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardUser[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardUser DEFAULT
public static final StandardUser ANONYMOUS
public static final StandardUser NONE
public static StandardUser[] values()
for (StandardUser c : StandardUser.values()) System.out.println(c);
public static StandardUser 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