public enum StateEvent extends Enum<StateEvent> implements EventLabel
Defines standard state events.
| Enum Constant and Description |
|---|
ABORT |
BLUR |
CHANGE |
ERROR |
FOCUS |
LOAD |
RESIZE |
SELECT |
UNLOAD |
| Modifier and Type | Method and Description |
|---|---|
String |
getEventLabel() |
static StateEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateEvent ABORT
public static final StateEvent BLUR
public static final StateEvent CHANGE
public static final StateEvent ERROR
public static final StateEvent FOCUS
public static final StateEvent LOAD
public static final StateEvent RESIZE
public static final StateEvent SELECT
public static final StateEvent UNLOAD
public static StateEvent[] values()
for (StateEvent c : StateEvent.values()) System.out.println(c);
public static StateEvent 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 nullpublic String getEventLabel()
getEventLabel in interface EventLabelCopyright © 2015. All Rights Reserved.