public enum UIEventType extends Enum<UIEventType>
Enum Constant and Description |
---|
click |
dblclick |
mousedown |
mousemove |
mouseout |
mouseover |
mouseup |
rightclick |
Modifier and Type | Method and Description |
---|---|
static UIEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UIEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIEventType click
public static final UIEventType dblclick
public static final UIEventType mousemove
public static final UIEventType mouseup
public static final UIEventType mousedown
public static final UIEventType mouseover
public static final UIEventType mouseout
public static final UIEventType rightclick
public static UIEventType[] values()
for (UIEventType c : UIEventType.values()) System.out.println(c);
public static UIEventType 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 nullCopyright © 2016. All Rights Reserved.