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 ConstraintValidator Modifier and Type Method Description private static <A extends java.lang.annotation.Annotation>
ConstraintValidator<A>ConstraintValidators. getValidator(A annotation, java.lang.Class<? extends A> type)Methods in org.apache.logging.log4j.core.config.plugins.validation that return types with arguments of type ConstraintValidator Modifier and Type Method Description static java.util.Collection<ConstraintValidator<?>>ConstraintValidators. findValidators(java.lang.annotation.Annotation... annotations)Finds all relevantConstraintValidatorobjects from an array of annotations.java.lang.Class<? extends ConstraintValidator<? extends java.lang.annotation.Annotation>>value()ConstraintValidatorclass that implements the validation logic for the annotated constraint annotation.Method parameters in org.apache.logging.log4j.core.config.plugins.validation with type arguments of type ConstraintValidator Modifier and Type Method Description private static java.lang.reflect.TypeConstraintValidators. getConstraintValidatorAnnotationType(java.lang.Class<? extends ConstraintValidator<?>> type) -
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 classNotBlankValidatorValidator that checks if aCharSequenceis not entirely composed of whitespace.classRequiredValidatorValidator that checks an object for emptiness.classValidHostValidatorValidator that checks an object to verify it is a valid hostname or IP address.classValidPortValidatorValidator that checks an object to verify it is a valid port number (an integer between 0 and 65535).
-