com.itranswarp.jsonstream.annotation.ExclusiveMinimum Maven / Gradle / Ivy
package com.itranswarp.jsonstream.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Not includes the minimum value.
*
* @author Michael Liao
*/
@Target({ ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface ExclusiveMinimum {
}