public static enum MouseButtonTrigger.Type extends Enum<MouseButtonTrigger.Type>
| Enum Constant and Description |
|---|
ALL |
CLICK |
DOWN |
PRESS |
UP |
UP_OR_DOWN |
| Modifier and Type | Method and Description |
|---|---|
static MouseButtonTrigger.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MouseButtonTrigger.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MouseButtonTrigger.Type PRESS
public static final MouseButtonTrigger.Type UP
public static final MouseButtonTrigger.Type DOWN
public static final MouseButtonTrigger.Type CLICK
public static final MouseButtonTrigger.Type UP_OR_DOWN
public static final MouseButtonTrigger.Type ALL
public static MouseButtonTrigger.Type[] values()
for (MouseButtonTrigger.Type c : MouseButtonTrigger.Type.values()) System.out.println(c);
public static MouseButtonTrigger.Type 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 © 2014. All rights reserved.