Uses of Class
org.elasticsearch.common.inject.spi.InjectionPoint
-
Packages that use InjectionPoint Package Description org.elasticsearch.common.inject.internal org.elasticsearch.common.inject.spi -
-
Uses of InjectionPoint in org.elasticsearch.common.inject.internal
Methods in org.elasticsearch.common.inject.internal that return types with arguments of type InjectionPoint Modifier and Type Method Description Set<InjectionPoint>InstanceBindingImpl. getInjectionPoints()Set<InjectionPoint>ProviderInstanceBindingImpl. getInjectionPoints()Methods in org.elasticsearch.common.inject.internal with parameters of type InjectionPoint Modifier and Type Method Description static voidErrors. formatInjectionPoint(Formatter formatter, Dependency<?> dependency, InjectionPoint injectionPoint)Constructor parameters in org.elasticsearch.common.inject.internal with type arguments of type InjectionPoint Constructor Description InstanceBindingImpl(Object source, Key<T> key, Scoping scoping, Set<InjectionPoint> injectionPoints, T instance)InstanceBindingImpl(Injector injector, Key<T> key, Object source, InternalFactory<? extends T> internalFactory, Set<InjectionPoint> injectionPoints, T instance)ProviderInstanceBindingImpl(Object source, Key<T> key, Scoping scoping, Set<InjectionPoint> injectionPoints, Provider<? extends T> providerInstance)ProviderInstanceBindingImpl(Injector injector, Key<T> key, Object source, InternalFactory<? extends T> internalFactory, Scoping scoping, Provider<? extends T> providerInstance, Set<InjectionPoint> injectionPoints) -
Uses of InjectionPoint in org.elasticsearch.common.inject.spi
Methods in org.elasticsearch.common.inject.spi that return InjectionPoint Modifier and Type Method Description static InjectionPointInjectionPoint. forConstructorOf(Class<?> type)Returns a new injection point for the injectable constructor oftype.static InjectionPointInjectionPoint. forConstructorOf(TypeLiteral<?> type)Returns a new injection point for the injectable constructor oftype.InjectionPointConstructorBinding. getConstructor()Gets the constructor this binding injects.InjectionPointDependency. getInjectionPoint()Returns the injection point to which this dependency belongs, or null if this dependency isn't attached to a particular injection point.Methods in org.elasticsearch.common.inject.spi that return types with arguments of type InjectionPoint Modifier and Type Method Description static Set<InjectionPoint>InjectionPoint. forInstanceMethodsAndFields(Class<?> type)Returns all instance method and field injection points ontype.static Set<InjectionPoint>InjectionPoint. forInstanceMethodsAndFields(TypeLiteral<?> type)Returns all instance method and field injection points ontype.static Set<InjectionPoint>InjectionPoint. forStaticMethodsAndFields(Class<?> type)Returns all static method and field injection points ontype.static Set<InjectionPoint>InjectionPoint. forStaticMethodsAndFields(TypeLiteral type)Returns all static method and field injection points ontype.Set<InjectionPoint>ConstructorBinding. getInjectableMembers()Returns all instance method and field injection points ontype.Set<InjectionPoint>InjectionRequest. getInjectionPoints()Returns the instance methods and fields ofinstancethat will be injected to fulfill this request.Set<InjectionPoint>InstanceBinding. getInjectionPoints()Returns the field and method injection points of the instance, injected at injector-creation time only.Set<InjectionPoint>ProviderInstanceBinding. getInjectionPoints()Returns the field and method injection points of the provider, injected at injector-creation time only.Set<InjectionPoint>StaticInjectionRequest. getInjectionPoints()Returns the static methods and fields oftypethat will be injected to fulfill this request.Method parameters in org.elasticsearch.common.inject.spi with type arguments of type InjectionPoint Modifier and Type Method Description static Set<Dependency<?>>Dependency. forInjectionPoints(Set<InjectionPoint> injectionPoints)Returns the dependencies from the given injection points.
-