public enum CallbackKind extends Enum<CallbackKind>
| Enum Constant and Description |
|---|
KEYBOARD |
LOAD |
MOUSE |
UNKNOWN |
UNLOAD |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static CallbackKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallbackKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallbackKind KEYBOARD
public static final CallbackKind LOAD
public static final CallbackKind MOUSE
public static final CallbackKind UNKNOWN
public static final CallbackKind UNLOAD
public String getName()
public static CallbackKind 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 static CallbackKind[] values()
for (CallbackKind c : CallbackKind.values()) System.out.println(c);
Copyright © 2012 Aarhus University