|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<UserKeyEvent>
com.kuka.roboticsAPI.uiModel.userKeys.UserKeyEvent
public enum UserKeyEvent
The possible user key events.
| Enum Constant Summary | |
|---|---|
FirstKeyDown
Event when the first key of a double user key is pressed down. |
|
FirstKeyUp
Event when the first key of a double user key is released. |
|
KeyDown
Event when user key is pressed down. |
|
KeyUp
Event when a user key is released. |
|
SecondKeyDown
Event when the second key of a double user key is pressed down. |
|
SecondKeyUp
Event when the second key of a double user key is released. |
|
| Method Summary | |
|---|---|
static UserKeyEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static UserKeyEvent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final UserKeyEvent KeyUp
public static final UserKeyEvent KeyDown
public static final UserKeyEvent FirstKeyUp
public static final UserKeyEvent FirstKeyDown
public static final UserKeyEvent SecondKeyUp
public static final UserKeyEvent SecondKeyDown
| Method Detail |
|---|
public static UserKeyEvent[] values()
for (UserKeyEvent c : UserKeyEvent.values()) System.out.println(c);
public static UserKeyEvent valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||