public static enum MouseSupport.Tracking extends Enum<MouseSupport.Tracking>
Modifier and Type | Method and Description |
---|---|
static MouseSupport.Tracking |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MouseSupport.Tracking[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MouseSupport.Tracking Normal
public static final MouseSupport.Tracking Button
public static final MouseSupport.Tracking Any
public static MouseSupport.Tracking[] values()
for (MouseSupport.Tracking c : MouseSupport.Tracking.values()) System.out.println(c);
public static MouseSupport.Tracking 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 © 2019. All rights reserved.