public enum KeyEventType extends Enum<KeyEventType>
| Modifier and Type | Field and Description |
|---|---|
static Set<KeyEventType> |
ALL |
| Modifier and Type | Method and Description |
|---|---|
String |
getEventString() |
static KeyEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyEventType KEYDOWN
public static final KeyEventType KEYPRESS
public static final KeyEventType KEYUP
public static final Set<KeyEventType> ALL
public static KeyEventType[] values()
for (KeyEventType c : KeyEventType.values()) System.out.println(c);
public static KeyEventType 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 getEventString()
Copyright © 2015 Atlassian. All rights reserved.