Enum Class IssueTypeConfigWorkflowHelper.WorkflowState
java.lang.Object
java.lang.Enum<IssueTypeConfigWorkflowHelper.WorkflowState>
com.atlassian.jira.projectconfig.issuetypes.workflow.IssueTypeConfigWorkflowHelper.WorkflowState
- All Implemented Interfaces:
Serializable,Comparable<IssueTypeConfigWorkflowHelper.WorkflowState>,Constable
- Enclosing interface:
IssueTypeConfigWorkflowHelper
public static enum IssueTypeConfigWorkflowHelper.WorkflowState
extends Enum<IssueTypeConfigWorkflowHelper.WorkflowState>
Represents the state of a workflow associated with a project.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe workflow is editable.The workflow is editable because user has edit workflow permission.The workflow will be editable after a migration.The user does not have permission to edit the workflow.The workflow is not editable.The workflow is not editable to the user that has edit workflow permission because it is shared.The workflow is not editable to the user that has edit workflow permission because it is system workflow. -
Method Summary
Modifier and TypeMethodDescriptionReturn a non-java constant simple name for the value.Returns 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
-
NO_PERMISSION
The user does not have permission to edit the workflow. -
READ_ONLY
The workflow is not editable. -
READ_ONLY_DELEGATED_SHARED
The workflow is not editable to the user that has edit workflow permission because it is shared. -
READ_ONLY_DELEGATED_SYSTEM
The workflow is not editable to the user that has edit workflow permission because it is system workflow. -
EDITABLE
The workflow is editable. -
EDITABLE_DELEGATED
The workflow is editable because user has edit workflow permission. -
MIGRATE
The workflow will be editable after a migration.
-
-
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
Return a non-java constant simple name for the value.- Returns:
- a non-java constant simple name for the value.
-