public enum ClickMode extends Enum<ClickMode>
Enum Constant and Description |
---|
HOVER
Specifies that the Click event should fire when the mouse hovers over a control.
|
PRESS
Specifies that the Click event will occur as soon as a button is pressed.
|
RELEASE
Specifies that the Click event will occur when a button is pressed and released.
|
Modifier and Type | Method and Description |
---|---|
static ClickMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClickMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClickMode HOVER
public static final ClickMode PRESS
public static final ClickMode RELEASE
public static ClickMode[] values()
for (ClickMode c : ClickMode.values()) System.out.println(c);
public static ClickMode 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 2009-2012 Micro Focus. All Rights Reserved.