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

com.develhack.annotation.assertion.LessThan Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
package com.develhack.annotation.assertion;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Asserts that the value must be less than the threshold.
 */
@Documented
@Target({ ElementType.PARAMETER, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface LessThan {

	/** string representation of threshold */
	String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy