Package com.google.inject.binder
Interface AnnotatedBindingBuilder<T>
-
- All Superinterfaces:
LinkedBindingBuilder<T>
,ScopedBindingBuilder
public interface AnnotatedBindingBuilder<T> extends LinkedBindingBuilder<T>
See the EDSL examples atBinder
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkedBindingBuilder<T>
annotatedWith(Annotation annotation)
See the EDSL examples atBinder
.LinkedBindingBuilder<T>
annotatedWith(Class<? extends Annotation> annotationType)
See the EDSL examples atBinder
.-
Methods inherited from interface com.google.inject.binder.LinkedBindingBuilder
to, to, to, toConstructor, toConstructor, toInstance, toProvider, toProvider, toProvider, toProvider, toProvider
-
Methods inherited from interface com.google.inject.binder.ScopedBindingBuilder
asEagerSingleton, in, in
-
-
-
-
Method Detail
-
annotatedWith
LinkedBindingBuilder<T> annotatedWith(Class<? extends Annotation> annotationType)
See the EDSL examples atBinder
.
-
annotatedWith
LinkedBindingBuilder<T> annotatedWith(Annotation annotation)
See the EDSL examples atBinder
.
-
-