com.bumptech.glide.annotation.Excludes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotations Show documentation
Show all versions of annotations Show documentation
A set of annotations for configuring Glide.
package com.bumptech.glide.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Specifies a set of GlideModule and/or LibraryGlideModule classes that should be excluded from an
* application.
*
* Used only on AppGlideModules. Adding this annotation to other classes will have no affect.
*
*
Cannot be used to exclude AppGlideModules (there must be at most one per Application anyway).
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Excludes {
Class>[] value();
}