public enum ActionTrigger extends Enum<ActionTrigger>
Enum Constant and Description |
---|
ACTIONS_DIALOG |
KEYBOARD_SHORTCUT |
MENU |
Modifier and Type | Method and Description |
---|---|
static ActionTrigger |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionTrigger MENU
public static final ActionTrigger KEYBOARD_SHORTCUT
public static final ActionTrigger ACTIONS_DIALOG
public static ActionTrigger[] values()
for (ActionTrigger c : ActionTrigger.values()) System.out.println(c);
public static ActionTrigger valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002-2017 Atlassian. All Rights Reserved.