public enum CustomHotkeyModifier extends Enum<CustomHotkeyModifier>
| Enum Constant and Description |
|---|
CNTRL
Control Key
|
CNTRL_SHIFT
Control and Shift Key
|
SHIFT
Shift Key
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns the name of the enumerator replacing all underscores with +
|
static CustomHotkeyModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomHotkeyModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomHotkeyModifier CNTRL
public static final CustomHotkeyModifier SHIFT
public static final CustomHotkeyModifier CNTRL_SHIFT
public static CustomHotkeyModifier[] values()
for (CustomHotkeyModifier c : CustomHotkeyModifier.values()) System.out.println(c);
public static CustomHotkeyModifier 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 nullpublic String toString()
toString in class Enum<CustomHotkeyModifier>Copyright © 2019 Marc Magon. All rights reserved.