Class ExposedBindingImpl<T>
- java.lang.Object
-
- org.elasticsearch.common.inject.internal.BindingImpl<T>
-
- org.elasticsearch.common.inject.internal.ExposedBindingImpl<T>
-
- All Implemented Interfaces:
Binding<T>,Element,ExposedBinding<T>,HasDependencies
public class ExposedBindingImpl<T> extends BindingImpl<T> implements ExposedBinding<T>
-
-
Constructor Summary
Constructors Constructor Description ExposedBindingImpl(java.lang.Object source, Key<T> key, Scoping scoping, PrivateElements privateElements)ExposedBindingImpl(Injector injector, java.lang.Object source, Key<T> key, InternalFactory<T> factory, PrivateElements privateElements)
-
Method Summary
Modifier and Type Method Description <V> VacceptTargetVisitor(BindingTargetVisitor<? super T,V> visitor)Accepts a target visitor.voidapplyTo(Binder binder)Unsupported.java.util.Set<Dependency<?>>getDependencies()Returns the known dependencies for this type.PrivateElementsgetPrivateElements()Returns the enclosed environment that holds the original binding.java.lang.StringtoString()ExposedBindingImpl<T>withKey(Key<T> key)BindingImpl<T>withScoping(Scoping scoping)-
Methods inherited from class org.elasticsearch.common.inject.internal.BindingImpl
acceptScopingVisitor, acceptVisitor, getInjector, getInternalFactory, getKey, getProvider, getScoping, getSource, isConstant
-
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
acceptScopingVisitor, getKey, getProvider
-
Methods inherited from interface org.elasticsearch.common.inject.spi.Element
acceptVisitor, getSource
-
-
-
-
Constructor Detail
-
ExposedBindingImpl
public ExposedBindingImpl(Injector injector, java.lang.Object source, Key<T> key, InternalFactory<T> factory, PrivateElements privateElements)
-
ExposedBindingImpl
public ExposedBindingImpl(java.lang.Object source, Key<T> key, Scoping scoping, PrivateElements privateElements)
-
-
Method Detail
-
acceptTargetVisitor
public <V> V acceptTargetVisitor(BindingTargetVisitor<? super T,V> visitor)
Description copied from interface:BindingAccepts a target visitor. Invokes the visitor method specific to this binding's target.- Specified by:
acceptTargetVisitorin interfaceBinding<T>- Parameters:
visitor- to call back on
-
getDependencies
public java.util.Set<Dependency<?>> getDependencies()
Description copied from interface:HasDependenciesReturns the known dependencies for this type. If this has dependencies whose values are not known statically, a dependency for theInjectorwill be included in the returned set.- Specified by:
getDependenciesin interfaceHasDependencies- Returns:
- a possibly empty set
-
getPrivateElements
public PrivateElements getPrivateElements()
Description copied from interface:ExposedBindingReturns the enclosed environment that holds the original binding.- Specified by:
getPrivateElementsin interfaceExposedBinding<T>
-
withScoping
public BindingImpl<T> withScoping(Scoping scoping)
- Overrides:
withScopingin classBindingImpl<T>
-
withKey
public ExposedBindingImpl<T> withKey(Key<T> key)
- Overrides:
withKeyin classBindingImpl<T>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classBindingImpl<T>
-
applyTo
public void applyTo(Binder binder)
Description copied from interface:ExposedBindingUnsupported. Always throwsUnsupportedOperationException.- Specified by:
applyToin interfaceElement- Specified by:
applyToin interfaceExposedBinding<T>- Parameters:
binder- to apply configuration element to
-
-