public enum RoleType extends Enum<RoleType>
Role| Enum Constant and Description |
|---|
ORGANIZATION_AUDITOR
organization_auditor role type
|
ORGANIZATION_BILLING_MANAGER
organization_billing_manager role type
|
ORGANIZATION_MANAGER
organization_manager role type
|
ORGANIZATION_USER
organization_user role type
|
SPACE_AUDITOR
space_auditor role type
|
SPACE_DEVELOPER
space_developer role type
|
SPACE_MANAGER
space_manager role type
|
| Modifier and Type | Field and Description |
|---|---|
static Set<RoleType> |
ORGANIZATION_ROLE_TYPES |
static Set<RoleType> |
SPACE_ROLE_TYPES |
| Modifier and Type | Method and Description |
|---|---|
static RoleType |
from(String s) |
String |
getValue() |
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 ORGANIZATION_AUDITOR
public static final RoleType ORGANIZATION_BILLING_MANAGER
public static final RoleType ORGANIZATION_MANAGER
public static final RoleType ORGANIZATION_USER
public static final RoleType SPACE_AUDITOR
public static final RoleType SPACE_DEVELOPER
public static final RoleType SPACE_MANAGER
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 String getValue()
Copyright © 2022. All rights reserved.