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

build.IgnoreJava8API Maven / Gradle / Ivy

Go to download

streamsupport is a backport of the Java 8 java.util.function (functional interfaces) and java.util.stream (streams) API for Java 6 / 7 and Android developers

The newest version!
package build;

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

/**
 * A {@link RetentionPolicy#CLASS} annotation for build time detection of
 * accidental use of APIs not compatible with Java 6 - should not
 * be included in the binary distribution.
 * 
 * @since 1.5.3
 */
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface IgnoreJava8API {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy