public enum FieldEventEnum extends java.lang.Enum<FieldEventEnum>
| Enum Constant and Description |
|---|
CHANGED
A field value is changed, this event can be collapsed in a
FIELDACTION
event and so not sended by the client. |
FIELDACTION
On the client side, a
FIELDACTION can discard a CHANGED event,
this is done not only for perfomance reasons but also because an action
can avoid normal changed event processing, such as data validation. |
FOCUSCHANGED |
| Modifier and Type | Method and Description |
|---|---|
static FieldEventEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldEventEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldEventEnum CHANGED
FIELDACTION
event and so not sended by the client.public static final FieldEventEnum FIELDACTION
FIELDACTION can discard a CHANGED event,
this is done not only for perfomance reasons but also because an action
can avoid normal changed event processing, such as data validation.public static final FieldEventEnum FOCUSCHANGED
public static FieldEventEnum[] values()
for (FieldEventEnum c : FieldEventEnum.values()) System.out.println(c);
public static FieldEventEnum valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null