All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jakarta.validation.constraints.Positive Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
/*
 * Jakarta Validation API
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package jakarta.validation.constraints;

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 jakarta.validation.Constraint;
import jakarta.validation.Payload;
import jakarta.validation.constraints.Positive.List;

/**
 * The annotated element must be a strictly positive number (i.e. 0 is considered as an
 * invalid value).
 * 

* Supported types are: *

    *
  • {@code BigDecimal}
  • *
  • {@code BigInteger}
  • *
  • {@code byte}, {@code short}, {@code int}, {@code long}, {@code float}, * {@code double} and their respective wrappers
  • *
*

* {@code null} elements are considered valid. * * @author Gunnar Morling * @since 2.0 */ @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) @Retention(RUNTIME) @Repeatable(List.class) @Documented @Constraint(validatedBy = { }) public @interface Positive { String message() default "{jakarta.validation.constraints.Positive.message}"; Class[] groups() default { }; Class[] payload() default { }; /** * Defines several {@link Positive} constraints on the same element. * * @see Positive */ @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) @Retention(RUNTIME) @Documented @interface List { Positive[] value(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy