Enum Class ProjectFieldScreenHelper.FieldsScreenPermission
java.lang.Object
java.lang.Enum<ProjectFieldScreenHelper.FieldsScreenPermission>
com.atlassian.jira.issue.fields.screen.ProjectFieldScreenHelper.FieldsScreenPermission
- All Implemented Interfaces:
Serializable,Comparable<ProjectFieldScreenHelper.FieldsScreenPermission>,Constable
- Enclosing interface:
ProjectFieldScreenHelper
public static enum ProjectFieldScreenHelper.FieldsScreenPermission
extends Enum<ProjectFieldScreenHelper.FieldsScreenPermission>
Enum specifying whether fields screen is editable or not.
In case it is not editable JIRA can specify why exactly it is not editable
for given user / context.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionfields screen is editable by current user.fields screen is editable by current user, which has "edit fields set" permission set.fields screen is not editable because of insufficient permissions.fields screen is not editable because of some other constraints.The fields set is not editable to the user that has edit fields set permission because it is shared.The fields set is not editable to the user that has edit fields set permission because it is system's default fields set. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EDITABLE
fields screen is editable by current user. -
EDITABLE_DELEGATED
fields screen is editable by current user, which has "edit fields set" permission set. AKA is a Padawan in project with extended permissions -
READ_ONLY_DELEGATED_SHARED
The fields set is not editable to the user that has edit fields set permission because it is shared. -
READ_ONLY_DELEGATED_SYSTEM
The fields set is not editable to the user that has edit fields set permission because it is system's default fields set. -
NO_PERMISSION
fields screen is not editable because of insufficient permissions. -
NOT_EDITABLE
fields screen is not editable because of some other constraints.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
simpleName
-