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

devutility.internal.annotations.Ignore Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
package devutility.internal.annotations;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

@Inherited
@Retention(RUNTIME)
@Target({ TYPE, FIELD, METHOD })
public @interface Ignore {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy