javaScriptSupport
Constructor and Description |
---|
Checked(JavaScriptSupport javaScriptSupport,
Html5Support html5Support) |
Modifier and Type | Method and Description |
---|---|
boolean |
isRequired()
The exception to the rule.
|
void |
render(Field field,
Void constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport)
Hook used by components to allow the validator to contribute additional attributes or (more often) client-side
JavaScript (via the
FormSupport.addValidation(Field, String, String, Object) ). |
String |
toString() |
void |
validate(Field field,
Void constraintValue,
MessageFormatter formatter,
Object value)
Invoked after the client-submitted value has been
translated to check
that the value conforms to expectations (often, in terms of minimum or maximum value). |
getConstraintType, getMessageKey, getValueType
public Checked(JavaScriptSupport javaScriptSupport, Html5Support html5Support)
public void render(Field field, Void constraintValue, MessageFormatter formatter, MarkupWriter writer, FormSupport formSupport)
Validator
FormSupport.addValidation(Field, String, String, Object)
).render
in interface Validator<Void,Object>
field
- the field which is currently being renderedconstraintValue
- the value used to constrain inputformatter
- validation message, in the appropriate localewriter
- markup writer, allowing additional attributes to be written into the active elementformSupport
- used to add JavaScriptpublic void validate(Field field, Void constraintValue, MessageFormatter formatter, Object value) throws ValidationException
Validator
translated
to check
that the value conforms to expectations (often, in terms of minimum or maximum value). If and only if the value
is approved by all Validators is the value applied by the field.field
- the field for which a client submitted value is being validatedconstraintValue
- the value used to constrainformatter
- Validation messages, in the appropriate localevalue
- the translated value supplied by the userValidationException
- if the value violates the constraintpublic boolean isRequired()
isRequired
in interface Validator<Void,Object>
isRequired
in class AbstractValidator<Void,Object>
5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.