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

tech.ytsaurus.spyt.patch.annotations.Applicability Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.spyt.patch.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

@Target({ElementType.TYPE, ElementType.METHOD})
public @interface Applicability {
    /**
     * Spark version from which this patch is applicable, inclusive.
     */
    String from() default "3.2.2";

    /**
     * Spark version to which this patch is applicable, inclusive. If empty string, then the upper version is unbounded.
     */
    String to() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy