- All Superinterfaces:
AnnotatedElementContext
ParameterContext
encapsulates the context in which an
Executable
will be invoked for a given
Parameter
.
A ParameterContext
is used to support parameter resolution via
a ParameterResolver
.
- Since:
- 5.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault <A extends Annotation>
Optional<A>findAnnotation
(Class<A> annotationType) Find the first annotation ofannotationType
that is either present or meta-present on theAnnotatedElement
for this context.default <A extends Annotation>
List<A>findRepeatableAnnotations
(Class<A> annotationType) Find all repeatable annotations ofannotationType
that are either present or meta-present on theAnnotatedElement
for this context.default AnnotatedElement
Get theAnnotatedElement
for this context.default Executable
int
getIndex()
Get the index of theParameter
for this context within the parameter list of theExecutable
that declares the parameter.Get theParameter
for this context.Get the target on which theExecutable
that declares theParameter
for this context will be invoked, if available.default boolean
isAnnotated
(Class<? extends Annotation> annotationType) Determine if an annotation ofannotationType
is either present or meta-present on theAnnotatedElement
for this context.
-
Method Details
-
getParameter
Parameter getParameter()Get theParameter
for this context.WARNING
When searching for annotations on the parameter in this context, favor
isAnnotated(Class)
,findAnnotation(Class)
, andfindRepeatableAnnotations(Class)
over methods in theParameter
API due to a bug injavac
on JDK versions prior to JDK 9.- Returns:
- the parameter; never
null
- See Also:
-
getIndex
int getIndex()Get the index of theParameter
for this context within the parameter list of theExecutable
that declares the parameter.- Returns:
- the index of the parameter
- See Also:
-
getDeclaringExecutable
- Returns:
- the declaring
Executable
; nevernull
- See Also:
-
getTarget
Get the target on which theExecutable
that declares theParameter
for this context will be invoked, if available.- Returns:
- an
Optional
containing the target on which theExecutable
will be invoked; nevernull
but will be empty if theExecutable
is a constructor or astatic
method.
-
getAnnotatedElement
Get theAnnotatedElement
for this context.WARNING
When searching for annotations on the annotated element in this context, favor
AnnotatedElementContext.isAnnotated(Class)
,AnnotatedElementContext.findAnnotation(Class)
, andAnnotatedElementContext.findRepeatableAnnotations(Class)
over methods in theAnnotatedElement
API due to a bug injavac
on JDK versions prior to JDK 9.- Specified by:
getAnnotatedElement
in interfaceAnnotatedElementContext
- Returns:
- the annotated element; never
null
- Since:
- 5.10
-
isAnnotated
@API(status=STABLE, since="5.10") default boolean isAnnotated(Class<? extends Annotation> annotationType) Determine if an annotation ofannotationType
is either present or meta-present on theAnnotatedElement
for this context.WARNING
Favor the use of this method over directly invoking
AnnotatedElement.isAnnotationPresent(Class)
due to a bug injavac
on JDK versions prior to JDK 9.- Specified by:
isAnnotated
in interfaceAnnotatedElementContext
- Parameters:
annotationType
- the annotation type to search for; nevernull
- Returns:
true
if the annotation is present or meta-present- Since:
- 5.1.1
- See Also:
-
findAnnotation
@API(status=STABLE, since="5.10") default <A extends Annotation> Optional<A> findAnnotation(Class<A> annotationType) Find the first annotation ofannotationType
that is either present or meta-present on theAnnotatedElement
for this context.WARNING
Favor the use of this method over directly invoking annotation lookup methods in the
AnnotatedElement
API due to a bug injavac
on JDK versions prior to JDK 9.- Specified by:
findAnnotation
in interfaceAnnotatedElementContext
- Type Parameters:
A
- the annotation type- Parameters:
annotationType
- the annotation type to search for; nevernull
- Returns:
- an
Optional
containing the annotation; nevernull
but potentially empty - Since:
- 5.1.1
- See Also:
-
findRepeatableAnnotations
@API(status=STABLE, since="5.10") default <A extends Annotation> List<A> findRepeatableAnnotations(Class<A> annotationType) Find all repeatable annotations ofannotationType
that are either present or meta-present on theAnnotatedElement
for this context.WARNING
Favor the use of this method over directly invoking annotation lookup methods in the
AnnotatedElement
API due to a bug injavac
on JDK versions prior to JDK 9.- Specified by:
findRepeatableAnnotations
in interfaceAnnotatedElementContext
- Type Parameters:
A
- the annotation type- Parameters:
annotationType
- the repeatable annotation type to search for; nevernull
- Returns:
- the list of all such annotations found; neither
null
nor mutable, but potentially empty - Since:
- 5.1.1
- See Also:
-