public enum CheckTimeEnum extends Enum<CheckTimeEnum>
| Enum Constant and Description |
|---|
ON_CHANGE
Check when ever a field sends a change event, so text fields initiates a validation if cursor
leafs them.
|
ON_KEY_UP
Check on every key up, so when ever a sign is typed in, a check is done.
|
ON_SUBMIT
Check is done, when submit.
|
| Modifier and Type | Method and Description |
|---|---|
static CheckTimeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckTimeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckTimeEnum ON_KEY_UP
public static final CheckTimeEnum ON_CHANGE
public static final CheckTimeEnum ON_SUBMIT
public static CheckTimeEnum[] values()
for (CheckTimeEnum c : CheckTimeEnum.values()) System.out.println(c);
public static CheckTimeEnum 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–2016. All rights reserved.