18 lines
458 B
Java
18 lines
458 B
Java
package dagger.multibindings;
|
|
|
|
import dagger.MapKey;
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@MapKey
|
|
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* loaded from: classes3.dex */
|
|
public @interface LongKey {
|
|
long value();
|
|
}
|