public static enum IXYGraphLib.MouseEvent extends java.lang.Enum<IXYGraphLib.MouseEvent>
Enum Constant and Description |
---|
MOUSEDOUBLETAP |
MOUSEDOWN |
MOUSEMOVE |
MOUSESINGLETAP |
MOUSEUP |
Modifier and Type | Method and Description |
---|---|
static IXYGraphLib.MouseEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IXYGraphLib.MouseEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IXYGraphLib.MouseEvent MOUSEDOWN
public static final IXYGraphLib.MouseEvent MOUSEUP
public static final IXYGraphLib.MouseEvent MOUSEMOVE
public static final IXYGraphLib.MouseEvent MOUSEDOUBLETAP
public static final IXYGraphLib.MouseEvent MOUSESINGLETAP
public static IXYGraphLib.MouseEvent[] values()
for (IXYGraphLib.MouseEvent c : IXYGraphLib.MouseEvent.values()) System.out.println(c);
public static IXYGraphLib.MouseEvent valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null