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