Uses of Interface
org.apache.logging.log4j.core.config.plugins.validation.ConstraintValidator
-
Packages that use ConstraintValidator Package Description org.apache.logging.log4j.core.config.plugins.validation Constraint validators for plugin factory methods.org.apache.logging.log4j.core.config.plugins.validation.validators ConstraintValidator implementations for the constraint annotations. -
-
Uses of ConstraintValidator in org.apache.logging.log4j.core.config.plugins.validation
Methods in org.apache.logging.log4j.core.config.plugins.validation that return types with arguments of type ConstraintValidator Modifier and Type Method Description static Collection<ConstraintValidator<?>>
ConstraintValidators. findValidators(Annotation... annotations)
Finds all relevantConstraintValidator
objects from an array of annotations.Class<? extends ConstraintValidator<? extends Annotation>>
value()
ConstraintValidator
class that implements the validation logic for the annotated constraint annotation. -
Uses of ConstraintValidator in org.apache.logging.log4j.core.config.plugins.validation.validators
Classes in org.apache.logging.log4j.core.config.plugins.validation.validators that implement ConstraintValidator Modifier and Type Class Description class
NotBlankValidator
Validator that checks if aCharSequence
is not entirely composed of whitespace.class
RequiredValidator
Validator that checks an object for emptiness.class
ValidHostValidator
Validator that checks an object to verify it is a valid hostname or IP address.class
ValidPortValidator
Validator that checks an object to verify it is a valid port number (an integer between 0 and 65535).
-