Enum Class DefaultIssueActions
- All Implemented Interfaces:
IssueOperation
,Serializable
,Comparable<DefaultIssueActions>
,Constable
Enumeration of default issue actions.
For workflow actions, use WorkflowIssueAction
- Since:
- v4.3
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptioncssClass()
CSS class of the operation.boolean
whether or not this action has a shortcut associated with it.id()
Unique ID of the action used in the UI.shortcut()
Shortcut of this action (if any).uiName()
UI-visible name of the operationstatic DefaultIssueActions
Returns the enum constant of this class with the specified name.static DefaultIssueActions[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EDIT
-
COMMENT
-
LOG_WORK
-
ATTACH_FILES
-
CREATE_SUBTASK
-
CONVERT_TO_SUBTASK
-
MOVE
-
MOVE_SUBTASK
-
LINK_ISSUE
-
DELETE_ISSUE
-
ARCHIVE_ISSUE
-
RESTORE_ISSUE
-
EDIT_LABELS
-
MANAGE_WATCHERS
-
ASSIGN_ISSUE
-
ASSIGN_TO_ME
-
EDIT_ISSUE
-
START_WATCHING
-
STOP_WATCHING
-
TOGGLE_WATCHING
-
CLONE
-
-
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
-
id
Description copied from interface:IssueOperation
Unique ID of the action used in the UI.- Specified by:
id
in interfaceIssueOperation
- Returns:
- ID of the issue operation
-
uiName
Description copied from interface:IssueOperation
UI-visible name of the operation- Specified by:
uiName
in interfaceIssueOperation
- Returns:
- name of the operation
-
cssClass
Description copied from interface:IssueOperation
CSS class of the operation.- Specified by:
cssClass
in interfaceIssueOperation
- Returns:
- unique CSS class of the operation
-
hasShortcut
public boolean hasShortcut()Description copied from interface:IssueOperation
whether or not this action has a shortcut associated with it.- Specified by:
hasShortcut
in interfaceIssueOperation
- Returns:
true
, if this action has a keyboard shortcut
-
shortcut
Description copied from interface:IssueOperation
Shortcut of this action (if any). It must be compatible with theWebElement.sendKeys(CharSequence...)
andcom.atlassian.pageobjects.framework.element.PageElement#type(CharSequence...)
methods.- Specified by:
shortcut
in interfaceIssueOperation
- Returns:
- keyboard shortcut associated with this issue operation.
- See Also:
-
IssueOperation.hasShortcut()
WebElement.sendKeys(CharSequence...)
Keys
-