public static enum FormItemObserver.Action extends Enum<FormItemObserver.Action>
| Enum Constant and Description |
|---|
CREATED |
VALIDATED |
VALUE_CHANGED |
| Modifier and Type | Method and Description |
|---|---|
static FormItemObserver.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormItemObserver.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormItemObserver.Action CREATED
public static final FormItemObserver.Action VALUE_CHANGED
public static final FormItemObserver.Action VALIDATED
public static FormItemObserver.Action[] values()
for (FormItemObserver.Action c : FormItemObserver.Action.values()) System.out.println(c);
public static FormItemObserver.Action 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 JBoss, a division of Red Hat. All rights reserved.