public enum AuthRole extends Enum<AuthRole>
| Enum Constant and Description |
|---|
ADMIN
Administrator
|
USER
User
|
VISITOR
Visitor
|
| Modifier and Type | Method and Description |
|---|---|
static AuthRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthRole ADMIN
public static final AuthRole USER
public static final AuthRole VISITOR
public static AuthRole[] values()
for (AuthRole c : AuthRole.values()) System.out.println(c);
public static AuthRole valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2009–2014 IRD. All rights reserved.