Enum OrgRoleType
- All Implemented Interfaces:
Serializable
,Comparable<OrgRoleType>
,java.lang.constant.Constable
public enum OrgRoleType extends Enum<OrgRoleType>
An enum of organization roles
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIT_HELP_DESK
Audit help deskCIFS_DEFAULT_ROOM_ADMIN
CIFS default room adminHELP_DESK
Help deskINBOUND_TRANSIENT_WORKSPACE_OWNER
Transient Workspace OwnerLEGAL_INVESTIGATOR
Legal investigatorMYDOX_WORKSPACE_OWNER
MyDoX workspace ownerORG_ADMIN
Org adminPROTECTED_USER
Protected userSDS_USER
SDS userSERVICE_REPRESENTING_USER
Service Representing UserSERVICEX_ADMIN
ServiceX adminSHAREPOINT_DEFAULT_ROOM_ADMIN
SharePoint default room adminSUPER_ADMIN
Super adminVDR_OWNER
VDR ownerVDR_SUBSCRIBER
VDR subscriberVISITOR
VisitorWATCHDOX_PERSONAL_USER
Watchdox personal user -
Method Summary
Modifier and Type Method Description static OrgRoleType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrgRoleType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
VISITOR
Visitor -
VDR_OWNER
VDR owner -
ORG_ADMIN
Org admin -
SDS_USER
SDS user -
SUPER_ADMIN
Super admin -
HELP_DESK
Help desk -
VDR_SUBSCRIBER
VDR subscriber -
AUDIT_HELP_DESK
Audit help desk -
SHAREPOINT_DEFAULT_ROOM_ADMIN
SharePoint default room admin -
CIFS_DEFAULT_ROOM_ADMIN
CIFS default room admin -
MYDOX_WORKSPACE_OWNER
MyDoX workspace owner -
WATCHDOX_PERSONAL_USER
Watchdox personal user -
LEGAL_INVESTIGATOR
Legal investigator -
PROTECTED_USER
Protected user -
SERVICE_REPRESENTING_USER
Service Representing User -
INBOUND_TRANSIENT_WORKSPACE_OWNER
Transient Workspace Owner -
SERVICEX_ADMIN
ServiceX admin
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-