- All Implemented Interfaces:
Serializable,Comparable<DockShortcutAction>,Constable
Built-in shortcut actions supported by
SnapFX.
Applications can remap these actions to custom key combinations via
SnapFX.setShortcut(DockShortcutAction, javafx.scene.input.KeyCombination).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCancel an active drag operation.Close the currently active dock node.Select the next tab in the active tab pane.Select the previous tab in the active tab pane.Toggle always-on-top for the active floating window. -
Method Summary
Modifier and TypeMethodDescriptionstatic DockShortcutActionReturns the enum constant of this class with the specified name.static DockShortcutAction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CLOSE_ACTIVE_NODE
Close the currently active dock node. -
NEXT_TAB
Select the next tab in the active tab pane. -
PREVIOUS_TAB
Select the previous tab in the active tab pane. -
CANCEL_DRAG
Cancel an active drag operation. -
TOGGLE_ACTIVE_FLOATING_ALWAYS_ON_TOP
Toggle always-on-top for the active floating window.
-
-
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
-