public enum InputChangeEventPolicy extends java.lang.Enum<InputChangeEventPolicy>
| Enum Constant and Description |
|---|
ANY_CHANGE
Input changed events will be thrown on every value change (e.g. for every typed key)
|
EDIT_FINISHED
Input changed events will only be thrown, when the control loses its focus or on programmatic
value changes.
|
| Modifier and Type | Method and Description |
|---|---|
static InputChangeEventPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputChangeEventPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputChangeEventPolicy ANY_CHANGE
public static final InputChangeEventPolicy EDIT_FINISHED
public static InputChangeEventPolicy[] values()
for (InputChangeEventPolicy c : InputChangeEventPolicy.values()) System.out.println(c);
public static InputChangeEventPolicy 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 nullSiehe auch Jowidgets Nutzerhandbuch