Uses of Interface
com.google.inject.binder.LinkedBindingBuilder
-
Packages that use LinkedBindingBuilder Package Description com.google.inject Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework.com.google.inject.binder Interfaces which make upBinder
's expression language.com.google.inject.multibindings Extension for binding multiple instances in a collection; this extension requiresguice-multibindings.jar
. -
-
Uses of LinkedBindingBuilder in com.google.inject
Methods in com.google.inject that return LinkedBindingBuilder Modifier and Type Method Description protected <T> LinkedBindingBuilder<T>
AbstractModule. bind(Key<T> key)
<T> LinkedBindingBuilder<T>
Binder. bind(Key<T> key)
See the EDSL examples atBinder
.protected <T> LinkedBindingBuilder<T>
PrivateModule. bind(Key<T> key)
-
Uses of LinkedBindingBuilder in com.google.inject.binder
Subinterfaces of LinkedBindingBuilder in com.google.inject.binder Modifier and Type Interface Description interface
AnnotatedBindingBuilder<T>
See the EDSL examples atBinder
.Methods in com.google.inject.binder that return LinkedBindingBuilder Modifier and Type Method Description LinkedBindingBuilder<T>
AnnotatedBindingBuilder. annotatedWith(Annotation annotation)
See the EDSL examples atBinder
.LinkedBindingBuilder<T>
AnnotatedBindingBuilder. annotatedWith(Class<? extends Annotation> annotationType)
See the EDSL examples atBinder
. -
Uses of LinkedBindingBuilder in com.google.inject.multibindings
Methods in com.google.inject.multibindings that return LinkedBindingBuilder Modifier and Type Method Description LinkedBindingBuilder<V>
MapBinder. addBinding(K key)
Returns a binding builder used to add a new entry in the map.LinkedBindingBuilder<T>
Multibinder. addBinding()
Returns a binding builder used to add a new element in the set.LinkedBindingBuilder<T>
OptionalBinder. setBinding()
Returns a binding builder used to set the actual value that will be injected.LinkedBindingBuilder<T>
OptionalBinder. setDefault()
Returns a binding builder used to set the default value that will be injected.
-