Package jakarta.enterprise.inject.spi
Interface AnnotatedMember<X>
- 
- Type Parameters:
 X- the declaring type
- All Superinterfaces:
 Annotated
- All Known Subinterfaces:
 AnnotatedCallable<X>,AnnotatedConstructor<X>,AnnotatedField<X>,AnnotatedMethod<X>
public interface AnnotatedMember<X> extends Annotated
Represents a member of a Java type.
- Author:
 - Gavin King, Pete Muir
 - See Also:
 Member
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotatedType<X>getDeclaringType()Get the type which defines this member.MembergetJavaMember()Get the underlyingMember.booleanisStatic()Determines if the member is static.- 
Methods inherited from interface jakarta.enterprise.inject.spi.Annotated
getAnnotation, getAnnotations, getAnnotations, getBaseType, getTypeClosure, isAnnotationPresent 
 - 
 
 - 
 
- 
- 
Method Detail
- 
isStatic
boolean isStatic()
Determines if the member is static.
- Returns:
 trueif the member is static
 
- 
getDeclaringType
AnnotatedType<X> getDeclaringType()
Get the type which defines this member.
- Returns:
 - the type which defines this member
 
 
 - 
 
 -