public enum IappUserLevel extends Enum<IappUserLevel>
Enum Constant and Description |
---|
ADMIN
Admin
|
MANAGER
Manager
|
OPERATOR
Operator
|
Modifier and Type | Method and Description |
---|---|
static IappUserLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IappUserLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IappUserLevel ADMIN
public static final IappUserLevel MANAGER
public static final IappUserLevel OPERATOR
public static IappUserLevel[] values()
for (IappUserLevel c : IappUserLevel.values()) System.out.println(c);
public static IappUserLevel 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 © 2019. All rights reserved.