com.github.fashionbrot.internal.PatternConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation Show documentation
Show all versions of validation Show documentation
validation 参数验证 https://github.com/fashionbrot/validation
The newest version!
package com.github.fashionbrot.internal;
import com.github.fashionbrot.common.util.ObjectUtil;
import com.github.fashionbrot.constraint.ConstraintValidator;
import com.github.fashionbrot.util.ClassUtil;
import java.util.regex.Pattern;
public class PatternConstraint implements ConstraintValidator {
@Override
public boolean isValid(com.github.fashionbrot.annotation.Pattern pattern, Object objectValue, Class> valueType) {
if (objectValue == null) {
return pattern.skipEmpty();
}
if (ClassUtil.isString(valueType)) {
String strValue = (String) objectValue;
if (ObjectUtil.isEmpty(strValue)) {
return pattern.skipEmpty();
}
String regexp = pattern.regexp();
if (ObjectUtil.isNotEmpty(regexp)) {
Pattern patternV = Pattern.compile(pattern.regexp());
return patternV.matcher(strValue).matches();
}
}
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy