Uses of Interface
org.apache.wicket.validation.IValidatable
Package
Description
This package integrates bean validation framework into Wicket.
HTML Forms and form components.
This package provides interfaces for Wicket's
validation support.
This package provides an implementation of Wicket's
validation support.
-
Uses of IValidatable in org.apache.wicket.bean.validation
-
Uses of IValidatable in org.apache.wicket.extensions.validation.validator
Modifier and TypeMethodDescriptionprotected 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
Modifier and TypeMethodDescriptionfinal IValidatable<T>
FormComponent.newValidatable()
Creates an IValidatable that can be used to validate this form component. -
Uses of IValidatable in org.apache.wicket.validation
Modifier and TypeClassDescriptionclass
Validatable<T>
This implementation ofIValidatable
is meant to be used outside of Wicket.Modifier and TypeMethodDescriptionfinal 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
Modifier and TypeMethodDescriptionprotected 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)