com.seeyon.ctp.organization
枚举 OrgConstants.Role_SYSTEM_NAME

java.lang.Object
  继承者 java.lang.Enum<OrgConstants.Role_SYSTEM_NAME>
      继承者 com.seeyon.ctp.organization.OrgConstants.Role_SYSTEM_NAME
所有已实现的接口:
java.io.Serializable, java.lang.Comparable<OrgConstants.Role_SYSTEM_NAME>
包容类:
OrgConstants

public static enum OrgConstants.Role_SYSTEM_NAME
extends java.lang.Enum<OrgConstants.Role_SYSTEM_NAME>

系统预置后台角色,不包含任何应用角色,名称不允许有下划线


枚举常量摘要
AccountAdministrator
          单位后台管理员
AuditAdmin
          审计管理员
GroupAdmin
          集团管理员
GroupBulletinAdmin
          集团公告管理员
GroupBulletinAuditor
          集团公告审核员
GroupDiscussAdmin
          集团讨论审核员
GroupManager
          集团文档空间管理员,为文档发送到集团空间使用
GroupNewsAdmin
          集团新闻管理员
GroupNewsAuditor
          集团新闻审核员
GroupSurveyAdmin
          集团调查管理员
GroupSurveyAuditor
          集团调查审核员
SuperAdmin
          超级管理员
SystemAdmin
          系统管理员
 
方法摘要
static OrgConstants.Role_SYSTEM_NAME valueOf(java.lang.String name)
          返回带有指定名称的该类型的枚举常量。
static OrgConstants.Role_SYSTEM_NAME[] values()
          按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。
 
从类 java.lang.Enum 继承的方法
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

枚举常量详细信息

SystemAdmin

public static final OrgConstants.Role_SYSTEM_NAME SystemAdmin
系统管理员


AuditAdmin

public static final OrgConstants.Role_SYSTEM_NAME AuditAdmin
审计管理员


GroupAdmin

public static final OrgConstants.Role_SYSTEM_NAME GroupAdmin
集团管理员


AccountAdministrator

public static final OrgConstants.Role_SYSTEM_NAME AccountAdministrator
单位后台管理员


SuperAdmin

public static final OrgConstants.Role_SYSTEM_NAME SuperAdmin
超级管理员


GroupManager

public static final OrgConstants.Role_SYSTEM_NAME GroupManager
集团文档空间管理员,为文档发送到集团空间使用


GroupBulletinAdmin

public static final OrgConstants.Role_SYSTEM_NAME GroupBulletinAdmin
集团公告管理员


GroupBulletinAuditor

public static final OrgConstants.Role_SYSTEM_NAME GroupBulletinAuditor
集团公告审核员


GroupNewsAdmin

public static final OrgConstants.Role_SYSTEM_NAME GroupNewsAdmin
集团新闻管理员


GroupNewsAuditor

public static final OrgConstants.Role_SYSTEM_NAME GroupNewsAuditor
集团新闻审核员


GroupSurveyAdmin

public static final OrgConstants.Role_SYSTEM_NAME GroupSurveyAdmin
集团调查管理员


GroupSurveyAuditor

public static final OrgConstants.Role_SYSTEM_NAME GroupSurveyAuditor
集团调查审核员


GroupDiscussAdmin

public static final OrgConstants.Role_SYSTEM_NAME GroupDiscussAdmin
集团讨论审核员

方法详细信息

values

public static OrgConstants.Role_SYSTEM_NAME[] values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。该方法可用于迭代 常量,如下所示:
for (OrgConstants.Role_SYSTEM_NAME c : OrgConstants.Role_SYSTEM_NAME.values())
    System.out.println(c);


valueOf

public static OrgConstants.Role_SYSTEM_NAME valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格。)

参数:
name - 要返回的枚举常量的名称。
返回:
返回带有指定名称的枚举常量
抛出:
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentException