![JAR search and dependency download from the Maven repository](/logo.png)
org.biins.validation.collection.constraints.ElementsDecimalMin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collection-validation Show documentation
Show all versions of collection-validation Show documentation
Support of JSR-303 validation for collection elements
The newest version!
package org.biins.validation.collection.constraints;
import org.biins.validation.collection.constraints.impl.ElementsDecimalMinConstraintValidator;
import javax.validation.Constraint;
import javax.validation.Payload;
import javax.validation.constraints.DecimalMin;
import java.lang.annotation.*;
/**
* @see DecimalMin
*
* @author Martin Janys
*/
@Documented
@Constraint(validatedBy = ElementsDecimalMinConstraintValidator.class)
@Target({
ElementType.METHOD,
ElementType.FIELD
})
@Retention(RetentionPolicy.RUNTIME)
@ElementsValidator
public @interface ElementsDecimalMin {
DecimalMin value();
Class> element() default Number.class;
String message() default "{validation.collection.constraints.ElementsDecimalMin.message}";
Class>[] groups() default {};
Class extends Payload>[] payload() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy