public enum GlobalEventTypes extends java.lang.Enum<GlobalEventTypes>
Enum Constant and Description |
---|
CLIPBOARD |
FORM |
KEYBOARD |
MEDIA |
MISC |
MOUSE |
WINDOW |
Modifier and Type | Method and Description |
---|---|
static GlobalEventTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlobalEventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalEventTypes CLIPBOARD
public static final GlobalEventTypes FORM
public static final GlobalEventTypes KEYBOARD
public static final GlobalEventTypes MEDIA
public static final GlobalEventTypes MISC
public static final GlobalEventTypes MOUSE
public static final GlobalEventTypes WINDOW
public static GlobalEventTypes[] values()
for (GlobalEventTypes c : GlobalEventTypes.values()) System.out.println(c);
public static GlobalEventTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null