Uses of Interface
jakarta.faces.validator.Validator
Packages that use Validator
Package
Description
-
Uses of Validator in com.sun.faces.application
Methods in com.sun.faces.application that return ValidatorModifier and TypeMethodDescriptionValidator<?>
ApplicationImpl.createValidator
(String validatorId) -
Uses of Validator in com.sun.faces.application.annotation
Methods in com.sun.faces.application.annotation with parameters of type ValidatorModifier and TypeMethodDescriptionvoid
AnnotationManager.applyValidatorAnnotations
(FacesContext ctx, Validator v) Apply annotations relevant toValidator
instances. -
Uses of Validator in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return ValidatorModifier and TypeMethodDescriptionValidator<?>
InstanceFactory.createValidator
(String validatorId) -
Uses of Validator in com.sun.faces.cdi
Classes in com.sun.faces.cdi that implement ValidatorMethods in com.sun.faces.cdi that return ValidatorModifier and TypeMethodDescriptionstatic Validator<?>
CdiUtils.createValidator
(jakarta.enterprise.inject.spi.BeanManager beanManager, String value) Create a validator using the FacesValidator value attribute.Constructors in com.sun.faces.cdi with parameters of type Validator -
Uses of Validator in com.sun.faces.component.validator
Methods in com.sun.faces.component.validator with parameters of type ValidatorModifier and TypeMethodDescriptionvoid
ComponentValidators.ValidatorInfo.applyAttributes
(Validator v) -
Uses of Validator in com.sun.faces.ext.component
Methods in com.sun.faces.ext.component with parameters of type ValidatorModifier and TypeMethodDescriptionfinal void
UIValidateWholeBean.addValidator
(Validator validator) -
Uses of Validator in jakarta.faces.application
Methods in jakarta.faces.application that return ValidatorModifier and TypeMethodDescriptionabstract Validator
Application.createValidator
(String validatorId) Instantiate and return a newValidator
instance of the class specified by a previous call toaddValidator()
for the specified validator id.ApplicationWrapper.createValidator
(String validatorId) The default behavior of this method is to callApplication.createValidator(String)
on the wrappedApplication
object. -
Uses of Validator in jakarta.faces.component
Methods in jakarta.faces.component that return ValidatorModifier and TypeMethodDescriptionEditableValueHolder.getValidators()
Return the set of registeredValidator
s for this component instance.UIInput.getValidators()
Methods in jakarta.faces.component with parameters of type ValidatorModifier and TypeMethodDescriptionvoid
EditableValueHolder.addValidator
(Validator validator) Add aValidator
instance to the set associated with this component.void
UIInput.addValidator
(Validator validator) void
EditableValueHolder.removeValidator
(Validator validator) Remove aValidator
instance from the set associated with this component, if it was previously associated.void
UIInput.removeValidator
(Validator validator) -
Uses of Validator in jakarta.faces.validator
Classes in jakarta.faces.validator that implement ValidatorModifier and TypeClassDescriptionclass
A Validator that delegates validation of the bean property to the Bean Validation API.class
DoubleRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
LengthValidator is aValidator
that checks the number of characters in the String representation of the value of the associated component.class
LongRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
MethodExpressionValidator is aValidator
that wraps aMethodExpression
, and it performs validation by executing a method on an object identified by theMethodExpression
.class
A Validator that checks against a Regular Expression (which is the pattern property).class
A Validator that checks for an empty value in the same way that UIInput checks for a value.