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

com.bumptech.glide.annotation.Excludes Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc01
Show newest version
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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy