public interface InjectionPoint
Modifier and Type | Method and Description |
---|---|
Annotated |
getAnnotated()
Returns all annotations on the injection point.
|
Bean<?> |
getBean()
Returns the owning bean for the injection point.
|
java.lang.reflect.Member |
getMember()
Returns the Field for field injection, the Method for method injection,
and Constructor for constructor injection.
|
java.util.Set<java.lang.annotation.Annotation> |
getQualifiers()
Returns the declared qualifiers on the injection point.
|
java.lang.reflect.Type |
getType()
Returns the declared type of the injection point, e.g.
|
boolean |
isDelegate()
A delegate injection point is true for Decorators
|
boolean |
isTransient()
Test if the injection point is a java transient
|
java.lang.reflect.Type getType()
java.util.Set<java.lang.annotation.Annotation> getQualifiers()
Bean<?> getBean()
java.lang.reflect.Member getMember()
Annotated getAnnotated()
boolean isDelegate()
boolean isTransient()