Uses of Interface
dagger.spi.model.Binding
-
Packages that use Binding Package Description dagger.spi.model This package contains the APIs that are core to Dagger's internal model of bindings and the binding graph. -
-
Uses of Binding in dagger.spi.model
Methods in dagger.spi.model that return types with arguments of type Binding Modifier and Type Method Description default java.util.Optional<Binding>Binding. binding()Deprecated.This always returnsOptional.of(this).java.util.Optional<Binding>BindingGraph.MaybeBinding. binding()The binding, or empty if missing.java.util.Optional<Binding>BindingGraph.MissingBinding. binding()Deprecated.This always returnsOptional.empty().com.google.common.collect.ImmutableSet<Binding>BindingGraph. bindings()Returns the bindings.com.google.common.collect.ImmutableSet<Binding>BindingGraph. bindings(Key key)Returns the bindings for a key.com.google.common.collect.ImmutableSet<Binding>BindingGraph. requestedBindings(Binding binding)Returns the bindings that a given binding directly requests as a dependency.com.google.common.collect.ImmutableSet<Binding>BindingGraph. requestingBindings(BindingGraph.MaybeBinding binding)Returns the bindings that directly request a given binding as a dependency.Methods in dagger.spi.model with parameters of type Binding Modifier and Type Method Description com.google.common.collect.ImmutableSetMultimap<DependencyRequest,BindingGraph.DependencyEdge>BindingGraph. dependencyEdges(Binding binding)Returns the dependency edges for the dependencies of a binding.com.google.common.collect.ImmutableSet<Binding>BindingGraph. requestedBindings(Binding binding)Returns the bindings that a given binding directly requests as a dependency.com.google.common.collect.ImmutableSet<BindingGraph.MaybeBinding>BindingGraph. requestedMaybeMissingBindings(Binding binding)Returns the bindings or missing bindings that a given binding directly requests as a dependency.
-