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

water.junit.Priority Maven / Gradle / Ivy

The newest version!
package water.junit;

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

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Retention(RUNTIME)
@Target({FIELD, METHOD, TYPE, TYPE_USE})
public @interface Priority {
  int value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy