![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.commons.validation.ValidationUtils Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2014 Kloudtek Ltd
*/
package com.aeontronix.commons.validation;
import com.aeontronix.commons.StringUtils;
import com.aeontronix.commons.SystemUtils;
import com.aeontronix.commons.exception.ExceptionUtils;
import com.aeontronix.commons.exception.UnexpectedException;
/**
* Validation utilities
*/
public class ValidationUtils {
private static final AnnotationBasedValidator annotationBasedValidator;
static {
if (SystemUtils.hasClass("javax.validation.Validator")) {
annotationBasedValidator = new AnnotationBasedValidatorJSR303Impl();
} else {
annotationBasedValidator = null;
}
}
@SuppressWarnings({"unchecked", "ThrowableResultOfMethodCallIgnored"})
public static void validate(Object object, Class exceptionClass, Class>... validationGroups) throws E {
if (annotationBasedValidator == null) {
throw new UnexpectedException("No annotation based validator available");
}
annotationBasedValidator.validate(object, exceptionClass, validationGroups);
}
public static void validateWithinBounds(String msg, long min, long max, long... values) throws IllegalArgumentException {
validateWithinBounds(IllegalArgumentException.class, msg, min, max, values);
}
public static void validateWithinBounds(Class exceptionClass, String msg, long min, long max, long... values) throws E {
for (long value : values) {
if (value < min || value > max) {
ExceptionUtils.throwException(exceptionClass, msg);
}
}
}
public static void notNull(Class exceptionClass, String msg, Object... values) throws E {
if (values != null) {
for (Object value : values) {
if (value == null) {
ExceptionUtils.throwException(exceptionClass, msg);
}
}
}
}
public static void notEmpty(Class exceptionClass, String msg, String... values) throws E {
if (values != null) {
for (String value : values) {
if (StringUtils.isEmpty(value)) {
ExceptionUtils.throwException(exceptionClass, msg);
}
}
}
}
public static boolean notEmpty(String... values) {
for (String value : values) {
if (StringUtils.isEmpty(value)) {
return false;
}
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy