blob: eb1534e8ce6580fe2eb7af8ba9d770558d3de7fd [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.lib.data;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.RUNTIME)
Stuart McCulloch4482c702012-06-15 13:27:53 +00006@Target(value = {
7 ElementType.FIELD
8})
Stuart McCullochf3173222012-06-07 21:57:32 +00009public @interface Numeric {
10 long min() default Long.MIN_VALUE;
Stuart McCulloch4482c702012-06-15 13:27:53 +000011
Stuart McCullochf3173222012-06-07 21:57:32 +000012 long max() default Long.MAX_VALUE;
Stuart McCulloch4482c702012-06-15 13:27:53 +000013
Stuart McCullochf3173222012-06-07 21:57:32 +000014 String reason() default "";
15}