Class BindingImpl<T>
- java.lang.Object
-
- org.elasticsearch.common.inject.internal.BindingImpl<T>
-
- Direct Known Subclasses:
ExposedBindingImpl,InstanceBindingImpl,LinkedBindingImpl,LinkedProviderBindingImpl,ProviderInstanceBindingImpl,UntargettedBindingImpl
public abstract class BindingImpl<T> extends java.lang.Object implements Binding<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBindingImpl(java.lang.Object source, Key<T> key, Scoping scoping)BindingImpl(Injector injector, Key<T> key, java.lang.Object source, InternalFactory<? extends T> internalFactory, Scoping scoping)
-
Method Summary
Modifier and Type Method Description <V> VacceptScopingVisitor(BindingScopingVisitor<V> visitor)Accepts a scoping visitor.<V> VacceptVisitor(ElementVisitor<V> visitor)Accepts an element visitor.InjectorgetInjector()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.ScopinggetScoping()java.lang.ObjectgetSource()Returns an arbitrary object containing information about the "place" where this element was configured.booleanisConstant()Is this a constant binding? This returns true for constant bindings as well as toInstance() bindings.java.lang.StringtoString()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 org.elasticsearch.common.inject.Binding
acceptTargetVisitor
-
-
-
-
Method Detail
-
getKey
public Key<T> getKey()
Description copied from interface:BindingReturns the key for this binding.
-
getSource
public java.lang.Object getSource()
Description copied from interface:ElementReturns 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;
StackTraceElementis 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:BindingReturns the scoped provider guice uses to fulfill requests for this binding.- Specified by:
getProviderin interfaceBinding<T>
-
getInternalFactory
public 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:ElementAccepts an element visitor. Invokes the visitor method specific to this element's type.- Specified by:
acceptVisitorin interfaceElement- Parameters:
visitor- to call back on
-
acceptScopingVisitor
public <V> V acceptScopingVisitor(BindingScopingVisitor<V> visitor)
Description copied from interface:BindingAccepts a scoping visitor. Invokes the visitor method specific to this binding's scoping.- Specified by:
acceptScopingVisitorin interfaceBinding<T>- Parameters:
visitor- to call back on
-
withScoping
protected BindingImpl<T> withScoping(Scoping scoping)
-
withKey
protected BindingImpl<T> withKey(Key<T> key)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getInjector
public Injector getInjector()
-
-