public enum ClientValidation extends Enum<ClientValidation>
BLUR
and from "false" to NONE
are added (though these
may be removed some time after Tapestry 5.2).Enum Constant and Description |
---|
BLUR
Fields validate as the user tabs out of them ("onblur" client side event), as well as when the form submits.
|
NONE
Client-side validation is disabled.
|
SUBMIT
Fields only validate when the form submits (validation errors will prevent the form from actually submitting).
|
Modifier and Type | Method and Description |
---|---|
static ClientValidation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientValidation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientValidation BLUR
public static final ClientValidation SUBMIT
public static final ClientValidation NONE
public static ClientValidation[] values()
for (ClientValidation c : ClientValidation.values()) System.out.println(c);
public static ClientValidation 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 © 2003-2012 The Apache Software Foundation.