Package FlaNium.WinAPI.enums
Enum KeyCombination
- java.lang.Object
-
- java.lang.Enum<KeyCombination>
-
- FlaNium.WinAPI.enums.KeyCombination
-
- All Implemented Interfaces:
Serializable,Comparable<KeyCombination>
public enum KeyCombination extends Enum<KeyCombination>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CTRL_ACTRL_A_BACKSPACECTRL_A_DELETECTRL_CCTRL_VCTRL_X
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyCombinationvalueOf(String name)Returns the enum constant of this type with the specified name.static KeyCombination[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CTRL_A
public static final KeyCombination CTRL_A
-
CTRL_C
public static final KeyCombination CTRL_C
-
CTRL_V
public static final KeyCombination CTRL_V
-
CTRL_X
public static final KeyCombination CTRL_X
-
CTRL_A_DELETE
public static final KeyCombination CTRL_A_DELETE
-
CTRL_A_BACKSPACE
public static final KeyCombination CTRL_A_BACKSPACE
-
-
Method Detail
-
values
public static KeyCombination[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyCombination c : KeyCombination.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyCombination valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-