Uses of Interface
org.apache.wicket.validation.IValidatable
-
Packages that use IValidatable Package Description org.apache.wicket.bean.validation This package integrates bean validation framework into Wicket.org.apache.wicket.extensions.validation.validator org.apache.wicket.markup.html.form HTML Forms and form components.org.apache.wicket.validation This package provides interfaces for Wicket's validation support.org.apache.wicket.validation.validator This package provides an implementation of Wicket's validation support. -
-
Uses of IValidatable in org.apache.wicket.bean.validation
Methods in org.apache.wicket.bean.validation with parameters of type IValidatable Modifier and Type Method Description void
PropertyValidator. validate(IValidatable<T> validatable)
-
Uses of IValidatable in org.apache.wicket.extensions.validation.validator
Methods in org.apache.wicket.extensions.validation.validator with parameters of type IValidatable Modifier and Type Method Description protected IValidationError
RfcCompliantEmailAddressValidator. decorate(IValidationError error, IValidatable<String> validatable)
Allows subclasses to decorate reported errorsvoid
RfcCompliantEmailAddressValidator. validate(IValidatable<String> validatable)
-
Uses of IValidatable in org.apache.wicket.markup.html.form
Methods in org.apache.wicket.markup.html.form that return IValidatable Modifier and Type Method Description IValidatable<T>
FormComponent. newValidatable()
Creates an IValidatable that can be used to validate this form component. -
Uses of IValidatable in org.apache.wicket.validation
Classes in org.apache.wicket.validation that implement IValidatable Modifier and Type Class Description class
Validatable<T>
This implementation ofIValidatable
is meant to be used outside of Wicket.Methods in org.apache.wicket.validation with parameters of type IValidatable Modifier and Type Method Description void
CompoundValidator. validate(IValidatable<T> validatable)
void
IValidator. validate(IValidatable<T> validatable)
Validates theIValidatable
instance.void
ValidatorAdapter. validate(IValidatable<T> validatable)
Validates theIValidatable
instance. -
Uses of IValidatable in org.apache.wicket.validation.validator
Methods in org.apache.wicket.validation.validator with parameters of type IValidatable Modifier and Type Method Description protected IValidationError
AbstractRangeValidator. decorate(IValidationError error, IValidatable<V> validatable)
Allows subclasses to decorate reported errorsprotected IValidationError
CreditCardValidator. decorate(IValidationError error, IValidatable<String> validatable)
Allows subclasses to decorate reported errorsprotected IValidationError
DateValidator. decorate(IValidationError error, IValidatable<Date> validatable)
protected IValidationError
PatternValidator. decorate(IValidationError error, IValidatable<String> validatable)
Allows subclasses to decorate reported errorsprotected IValidationError
StringValidator. decorate(IValidationError error, IValidatable<String> validatable)
protected IValidationError
UrlValidator. decorate(IValidationError error, IValidatable<String> validatable)
Allows subclasses to decorate reported errorsprotected abstract R
AbstractRangeValidator. getValue(IValidatable<V> validatable)
Gets the value that should be validated against the rangeprotected Z
RangeValidator. getValue(IValidatable<Z> validatable)
protected Integer
StringValidator. getValue(IValidatable<String> validatable)
void
AbstractRangeValidator. validate(IValidatable<V> validatable)
void
CreditCardValidator. validate(IValidatable<String> validatable)
void
PatternValidator. validate(IValidatable<String> validatable)
Checks a value against thisPatternValidator
'sPattern
.void
UrlValidator. validate(IValidatable<String> validatable)
-