Enum ProjectRole
- java.lang.Object
-
- java.lang.Enum<ProjectRole>
-
- ca.corefacility.bioinformatics.irida.model.enums.ProjectRole
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProjectRole>
public enum ProjectRole extends java.lang.Enum<ProjectRole>
Roles for users accessing projects.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PROJECT_OWNER
PROJECT_USER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProjectRole
fromString(java.lang.String code)
Get a role from the given string codeint
getLevel()
static ProjectRole
getMaxRoleForProjectsAndGroups(ProjectUserJoin projectUserJoin, java.util.Collection<UserGroupProjectJoin> userGroupProjectJoins)
Compares and returns the highest levelProjectRole
from aProjectUserJoin
and a collection ofUserGroupProjectJoin
s.java.lang.String
toString()
static ProjectRole
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProjectRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT_USER
public static final ProjectRole PROJECT_USER
-
PROJECT_OWNER
public static final ProjectRole PROJECT_OWNER
-
-
Method Detail
-
values
public static ProjectRole[] 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 (ProjectRole c : ProjectRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProjectRole 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ProjectRole>
-
fromString
public static ProjectRole fromString(java.lang.String code)
Get a role from the given string code- Parameters:
code
- the string to get a role for- Returns:
- The requested ProjectRole
-
getLevel
public int getLevel()
-
getMaxRoleForProjectsAndGroups
public static ProjectRole getMaxRoleForProjectsAndGroups(ProjectUserJoin projectUserJoin, java.util.Collection<UserGroupProjectJoin> userGroupProjectJoins)
Compares and returns the highest levelProjectRole
from aProjectUserJoin
and a collection ofUserGroupProjectJoin
s.- Parameters:
projectUserJoin
- a user'sProjectUserJoin
userGroupProjectJoins
- a collection ofUserGroupProjectJoin
- Returns:
- the max
ProjectRole
-
-