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

marcel.lang.compile.IntRangeDefaultValue Maven / Gradle / Ivy

The newest version!
package marcel.lang.compile;

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

import static java.lang.annotation.ElementType.PARAMETER;

@Retention(RetentionPolicy.RUNTIME)
@Target(value={PARAMETER})
public @interface IntRangeDefaultValue {
    int from() default 0;
    int to() default 0;

    boolean fromExclusive() default false;
    boolean toExclusive() default false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy