public enum RoleType extends Enum<RoleType>
Enum Constant and Description |
---|
API_ACCESS_MANAGEMENT_ADMIN |
APP_ADMIN |
GROUP_MEMBERSHIP_ADMIN |
HELP_DESK_ADMIN |
MOBILE_ADMIN |
ORG_ADMIN |
READ_ONLY_ADMIN |
REPORT_ADMIN |
SDK_UNKNOWN |
SUPER_ADMIN |
USER_ADMIN |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
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 ORG_ADMIN
public static final RoleType APP_ADMIN
public static final RoleType USER_ADMIN
public static final RoleType HELP_DESK_ADMIN
public static final RoleType READ_ONLY_ADMIN
public static final RoleType MOBILE_ADMIN
public static final RoleType API_ACCESS_MANAGEMENT_ADMIN
public static final RoleType REPORT_ADMIN
public static final RoleType GROUP_MEMBERSHIP_ADMIN
public static final RoleType SDK_UNKNOWN
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 nullCopyright © 2017–2023 Okta. All rights reserved.