Package ipsk.db.speech
Enum UserRoleId.RoleName
- java.lang.Object
- 
- java.lang.Enum<UserRoleId.RoleName>
- 
- ipsk.db.speech.UserRoleId.RoleName
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<UserRoleId.RoleName>
 - Enclosing class:
- UserRoleId
 
 public static enum UserRoleId.RoleName extends java.lang.Enum<UserRoleId.RoleName> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ADMINANNOTATON_PROJECT_ADMINORGANISATIONPROJECT_ADMINPROJECT_ANNOTATORPROJECT_MEMBERSUBJECT
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()static UserRoleId.RoleNameparse(java.lang.String roleName)static UserRoleId.RoleNamevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UserRoleId.RoleName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ADMINpublic static final UserRoleId.RoleName ADMIN 
 - 
PROJECT_ADMINpublic static final UserRoleId.RoleName PROJECT_ADMIN 
 - 
ANNOTATON_PROJECT_ADMINpublic static final UserRoleId.RoleName ANNOTATON_PROJECT_ADMIN 
 - 
PROJECT_MEMBERpublic static final UserRoleId.RoleName PROJECT_MEMBER 
 - 
SUBJECTpublic static final UserRoleId.RoleName SUBJECT 
 - 
ORGANISATIONpublic static final UserRoleId.RoleName ORGANISATION 
 - 
PROJECT_ANNOTATORpublic static final UserRoleId.RoleName PROJECT_ANNOTATOR 
 
- 
 - 
Method Detail- 
valuespublic static UserRoleId.RoleName[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UserRoleId.RoleName c : UserRoleId.RoleName.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static UserRoleId.RoleName valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getNamepublic java.lang.String getName() 
 - 
parsepublic static UserRoleId.RoleName parse(java.lang.String roleName) 
 
- 
 
-