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

android.support.annotation.IntRange Maven / Gradle / Ivy

package android.support.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.CLASS)
public @interface IntRange {
    long from() default Long.MIN_VALUE;

    long to() default Long.MAX_VALUE;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy