public enum ClientValidation extends Enum<ClientValidation>
Enum Constant and Description |
---|
BLUR
Deprecated.
Deprecated in 5.4, and no longer supported.
|
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 null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.