public enum RoleType extends Enum<RoleType>
Enum Constant and Description |
---|
ADMIN
While adding operator, want to assign "admin" role then use `2`.
|
HELPDESK
While adding operator, want to assign "helpDesk" role then use `3`.
|
REVIEWER
While adding operator, want to assign "reviewer" role then use `4`.
|
SUPER_ADMIN
While adding operator, want to assign "superAdmin" role then use `1`.
|
Modifier and Type | Method and Description |
---|---|
static RoleType |
fromValue(int value) |
String |
getName() |
Integer |
getValue() |
static RoleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoleType SUPER_ADMIN
public static final RoleType ADMIN
public static final RoleType HELPDESK
public static final RoleType REVIEWER
public static RoleType[] values()
for (RoleType c : RoleType.values()) System.out.println(c);
public static RoleType 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 nullpublic Integer getValue()
public String getName()
public static RoleType fromValue(int value)
Copyright © 2022 KOBIL Systems GmbH. All rights reserved.