Uses of Interface
javax.faces.validator.Validator
-
Packages that use Validator Package Description javax.faces.application javax.faces.component javax.faces.validator javax.faces.webapp org.apache.myfaces.core.api.shared -
-
Uses of Validator in javax.faces.application
Methods in javax.faces.application that return Validator Modifier and Type Method Description abstract Validator
Application. createValidator(String validatorId)
Instantiate and return a new
instance of the class specified by a previous call toValidator
addValidator()
for the specified validator id.Validator
ApplicationWrapper. createValidator(String validatorId)
-
Uses of Validator in javax.faces.component
Methods in javax.faces.component that return Validator Modifier and Type Method Description Validator[]
EditableValueHolder. getValidators()
Validator[]
UIInput. getValidators()
See getValidator.Methods in javax.faces.component with parameters of type Validator Modifier and Type Method Description void
EditableValueHolder. addValidator(Validator validator)
void
UIInput. addValidator(Validator validator)
See getValidator.void
EditableValueHolder. removeValidator(Validator validator)
void
UIInput. removeValidator(Validator validator)
See getValidator. -
Uses of Validator in javax.faces.validator
Classes in javax.faces.validator that implement Validator Modifier and Type Class Description class
BeanValidator
BeanValidator is aValidator
that doesn't do any validation itself, but delegates validation logic to Bean Validation.class
DoubleRangeValidator
Creates a validator and associateds it with the nearest parent UIComponent.class
LengthValidator
Creates a validator and associateds it with the nearest parent UIComponent.class
LongRangeValidator
Creates a validator and associateds it with the nearest parent UIComponent.class
MethodExpressionValidator
see Javadoc of JSF Specificationclass
RegexValidator
RegexValidator is aValidator
that checks the value of the corresponding component against specified pattern using Java regular expression syntax.class
RequiredValidator
Check if a value is empty, in the same way as set UIInput required property to true (including all rules related to this property). -
Uses of Validator in javax.faces.webapp
Methods in javax.faces.webapp that return Validator Modifier and Type Method Description protected abstract Validator
ValidatorELTag. createValidator()
protected Validator
ValidatorTag. createValidator()
Deprecated. -
Uses of Validator in org.apache.myfaces.core.api.shared
Methods in org.apache.myfaces.core.api.shared with parameters of type Validator Modifier and Type Method Description static boolean
BeanValidationUtils. isBeanValidator(Validator v)
-