org.hibernate.validator.constraints.time.DurationMin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-validator Show documentation
Show all versions of hibernate-validator Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries. These will be removed as time goes by
/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package org.hibernate.validator.constraints.time;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE_USE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.time.Duration;
import jakarta.validation.Constraint;
import jakarta.validation.Payload;
import jakarta.validation.ReportAsSingleViolation;
import org.hibernate.validator.Incubating;
import org.hibernate.validator.constraints.time.DurationMin.List;
/**
* The annotated {@link Duration} element must be longer than or equal to the one constructed as a sum of
* {@link DurationMin#nanos()}, {@link DurationMin#millis()}, {@link DurationMin#seconds()},
* {@link DurationMin#minutes()}, {@link DurationMin#hours()}, {@link DurationMin#days()}.
*
* @author Marko Bekhta
*/
@Documented
@Constraint(validatedBy = { })
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE })
@Retention(RUNTIME)
@Repeatable(List.class)
@ReportAsSingleViolation
@Incubating
public @interface DurationMin {
String message() default "{org.hibernate.validator.constraints.time.DurationMin.message}";
Class>[] groups() default { };
Class extends Payload>[] payload() default { };
long days() default 0;
long hours() default 0;
long minutes() default 0;
long seconds() default 0;
long millis() default 0;
long nanos() default 0;
/**
* Specifies whether the specified minimum is inclusive or exclusive. By default, it is inclusive.
*
* @return {@code true} if the value must be higher or equal to the specified minimum,
* {@code false} if the value must be higher
*
*/
boolean inclusive() default true;
/**
* Defines several {@code @DurationMin} annotations on the same element.
*/
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE })
@Retention(RUNTIME)
@Documented
@interface List {
DurationMin[] value();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy