public static enum Cell.MouseEventType extends Enum<Cell.MouseEventType>
Modifier and Type | Method and Description |
---|---|
static Cell.MouseEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cell.MouseEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cell.MouseEventType SCROLL
public static final Cell.MouseEventType DRAG
public static Cell.MouseEventType[] values()
for (Cell.MouseEventType c : Cell.MouseEventType.values()) System.out.println(c);
public static Cell.MouseEventType 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 © 2010–2023 Francesco Kriegel. All rights reserved.