public enum DispatchMouseEventButton extends Enum<DispatchMouseEventButton>
| Enum Constant and Description |
|---|
BACK |
FORWARD |
LEFT |
MIDDLE |
NONE |
RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static DispatchMouseEventButton |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispatchMouseEventButton[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispatchMouseEventButton NONE
public static final DispatchMouseEventButton LEFT
public static final DispatchMouseEventButton MIDDLE
public static final DispatchMouseEventButton RIGHT
public static final DispatchMouseEventButton BACK
public static final DispatchMouseEventButton FORWARD
public static DispatchMouseEventButton[] values()
for (DispatchMouseEventButton c : DispatchMouseEventButton.values()) System.out.println(c);
public static DispatchMouseEventButton 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 © 2020. All rights reserved.