Package com.google.inject.internal
Class BindingImpl<T>
- java.lang.Object
-
- com.google.inject.internal.BindingImpl<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> V
acceptScopingVisitor(BindingScopingVisitor<V> visitor)
Accepts a scoping visitor.<V> V
acceptVisitor(ElementVisitor<V> visitor)
Accepts an element visitor.com.google.inject.internal.InjectorImpl
getInjector()
com.google.inject.internal.InternalFactory<? extends T>
getInternalFactory()
Key<T>
getKey()
Returns the key for this binding.Provider<T>
getProvider()
Returns the scoped provider guice uses to fulfill requests for this binding.Scoping
getScoping()
Object
getSource()
Returns an arbitrary object containing information about the "place" where this element was configured.boolean
isConstant()
Is this a constant binding? This returns true for constant bindings as well as toInstance() bindings.String
toString()
protected BindingImpl<T>
withKey(Key<T> key)
protected BindingImpl<T>
withScoping(Scoping scoping)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.google.inject.Binding
acceptTargetVisitor
-
-
-
-
Method Detail
-
getKey
public Key<T> getKey()
Description copied from interface:Binding
Returns the key for this binding.
-
getSource
public Object getSource()
Description copied from interface:Element
Returns an arbitrary object containing information about the "place" where this element was configured. Used by Guice in the production of descriptive error messages.Tools might specially handle types they know about;
StackTraceElement
is a good example. Tools should simply calltoString()
on the source object if the type is unfamiliar.
-
getProvider
public Provider<T> getProvider()
Description copied from interface:Binding
Returns the scoped provider guice uses to fulfill requests for this binding.- Specified by:
getProvider
in interfaceBinding<T>
-
getInternalFactory
public com.google.inject.internal.InternalFactory<? extends T> getInternalFactory()
-
getScoping
public Scoping getScoping()
-
isConstant
public boolean isConstant()
Is this a constant binding? This returns true for constant bindings as well as toInstance() bindings.
-
acceptVisitor
public <V> V acceptVisitor(ElementVisitor<V> visitor)
Description copied from interface:Element
Accepts an element visitor. Invokes the visitor method specific to this element's type.- Specified by:
acceptVisitor
in interfaceElement
- Parameters:
visitor
- to call back on
-
acceptScopingVisitor
public <V> V acceptScopingVisitor(BindingScopingVisitor<V> visitor)
Description copied from interface:Binding
Accepts a scoping visitor. Invokes the visitor method specific to this binding's scoping.- Specified by:
acceptScopingVisitor
in interfaceBinding<T>
- Parameters:
visitor
- to call back on
-
withScoping
protected BindingImpl<T> withScoping(Scoping scoping)
-
withKey
protected BindingImpl<T> withKey(Key<T> key)
-
getInjector
public com.google.inject.internal.InjectorImpl getInjector()
-
-