
com.develhack.abbreviator.annotation.assertion.GreaterThanOrEqualTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abbreviator Show documentation
Show all versions of abbreviator Show documentation
Utilities to abbreviate Java idiom.
The newest version!
package com.develhack.abbreviator.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 greater than or equal to the threshold.
*/
@Documented
@Target({ ElementType.PARAMETER, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface GreaterThanOrEqualTo {
/** string representation of threshold */
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy