Module rxmicro.validation
Package io.rxmicro.validation.validator
Class EnumerationCharacterConstraintValidator
- java.lang.Object
-
- io.rxmicro.validation.validator.EnumerationCharacterConstraintValidator
-
- All Implemented Interfaces:
ConstraintValidator<Character>
public class EnumerationCharacterConstraintValidator extends Object implements ConstraintValidator<Character>
Validator for theEnumerationconstraint.- Since:
- 0.1
- Author:
- nedis
- See Also:
Enumeration
-
-
Constructor Summary
Constructors Constructor Description EnumerationCharacterConstraintValidator(Collection<String> allowed)Creates the default instance ofEnumerationCharacterConstraintValidatorwith the the allowed enum characters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidvalidate(Character actual, HttpModelType httpModelType, String modelName)Validates the single actual.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.rxmicro.validation.ConstraintValidator
validate, validateList, validateList
-
-
-
-
Constructor Detail
-
EnumerationCharacterConstraintValidator
public EnumerationCharacterConstraintValidator(Collection<String> allowed)
Creates the default instance ofEnumerationCharacterConstraintValidatorwith the the allowed enum characters.- Parameters:
allowed- the allowed enum characters
-
-
Method Detail
-
validate
public void validate(Character actual, HttpModelType httpModelType, String modelName)
Description copied from interface:ConstraintValidatorValidates the single actual.The state of the
actualmust not be altered.- Specified by:
validatein interfaceConstraintValidator<Character>- Parameters:
actual- the actual value to validatehttpModelType- the http model typemodelName- the parameter or header name
-
-