java.lang.annotation.Annotation
@Retention(value = )@Target(value = {}) public @interface IntRange
Denotes that the annotated element should be an int or long in the given range
Example:
@IntRange(from=0,to=255) public int getAlpha() { ... }
abstract long
from()
to()
annotationType, equals, hashCode, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract long from()
Smallest value, inclusive
abstract long to()
Largest value, inclusive