public enum WebEvent extends Enum<WebEvent>
| Modifier and Type | Method and Description |
|---|---|
static WebEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebEvent VALUE_SET
public static final WebEvent CLICK
public static final WebEvent CHANGE
public static final WebEvent RESIZE
public static WebEvent[] values()
for (WebEvent c : WebEvent.values()) System.out.println(c);
public static WebEvent 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 © 2015. All Rights Reserved.