Uses of Interface
jakarta.faces.validator.Validator
-
Uses of Validator in com.sun.faces.application
Methods in com.sun.faces.application that return Validator Modifier and Type Method Description Validator<?>
ApplicationImpl. createValidator(String validatorId)
-
Uses of Validator in com.sun.faces.application.annotation
Methods in com.sun.faces.application.annotation with parameters of type Validator Modifier and Type Method Description void
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 Validator Modifier and Type Method Description Validator<?>
InstanceFactory. createValidator(String validatorId)
-
Uses of Validator in com.sun.faces.cdi
Classes in com.sun.faces.cdi that implement Validator Modifier and Type Class Description class
CdiValidator
A delegate to the CDI managed validator.Methods in com.sun.faces.cdi that return Validator Modifier and Type Method Description static 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 Constructor Description CdiValidator(String validatorId, Validator delegate)
Constructor. -
Uses of Validator in com.sun.faces.component.validator
Methods in com.sun.faces.component.validator with parameters of type Validator Modifier and Type Method Description void
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 Validator Modifier and Type Method Description void
UIValidateWholeBean. addValidator(Validator validator)
-
Uses of Validator in com.sun.faces.ext.taglib
Methods in com.sun.faces.ext.taglib that return Validator Modifier and Type Method Description protected Validator
CreditCardValidatorTag. createValidator()
-
Uses of Validator in com.sun.faces.ext.validator
Classes in com.sun.faces.ext.validator that implement Validator Modifier and Type Class Description class
CreditCardValidator
A Validator that checks against a Regular Expression (which is the pattern property). -
Uses of Validator in com.sun.faces.taglib.jsf_core
Classes in com.sun.faces.taglib.jsf_core that implement Validator Modifier and Type Class Description static class
ValidatorTag.BindingValidator
Methods in com.sun.faces.taglib.jsf_core that return Validator Modifier and Type Method Description protected Validator
AbstractValidatorTag. createValidator()
protected static Validator
AbstractValidatorTag. createValidator(jakarta.el.ValueExpression validatorId, jakarta.el.ValueExpression binding, FacesContext facesContext)
protected Validator
RegexValidatorTag. createValidator()
protected Validator
ValidateDoubleRangeTag. createValidator()
protected Validator
ValidateLengthTag. createValidator()
protected Validator
ValidateLongRangeTag. createValidator()
protected Validator
ValidatorTag. createValidator()
-
Uses of Validator in jakarta.faces.application
Methods in jakarta.faces.application that return Validator Modifier and Type Method Description abstract 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.Validator
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 Validator Modifier and Type Method Description Validator[]
EditableValueHolder. getValidators()
Return the set of registeredValidator
s for this component instance.Validator[]
UIInput. getValidators()
Methods in jakarta.faces.component with parameters of type Validator Modifier and Type Method Description void
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 Validator Modifier and Type Class Description class
BeanValidator
A Validator that delegates validation of the bean property to the Bean Validation API.class
DoubleRangeValidator
DoubleRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
LengthValidator
LengthValidator is aValidator
that checks the number of characters in the String representation of the value of the associated component.class
LongRangeValidator
LongRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
MethodExpressionValidator
MethodExpressionValidator is aValidator
that wraps aMethodExpression
, and it performs validation by executing a method on an object identified by theMethodExpression
.class
RegexValidator
A Validator that checks against a Regular Expression (which is the pattern property).class
RequiredValidator
A Validator that checks for an empty value in the same way that UIInput checks for a value. -
Uses of Validator in jakarta.faces.webapp
Methods in jakarta.faces.webapp that return Validator Modifier and Type Method Description protected abstract Validator
ValidatorELTag. createValidator()
Create and return a newValidator
to be registered on our surroundingUIComponent
.protected Validator
ValidatorTag. createValidator()
Deprecated.Create and return a newValidator
to be registered on our surroundingUIComponent
.