Package io.smallrye.metrics.elementdesc
Interface MemberInfo
-
- All Known Implementing Classes:
CDIMemberInfo,RawMemberInfo
public interface MemberInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends Annotation>
AnnotationInfogetAnnotation(Class<T> metric)StringgetDeclaringClassName()StringgetDeclaringClassSimpleName()MemberTypegetMemberType()StringgetName()String[]getParameterTypeNames()<T extends Annotation>
booleanisAnnotationPresent(Class<T> metric)
-
-
-
Method Detail
-
getMemberType
MemberType getMemberType()
-
getDeclaringClassName
String getDeclaringClassName()
-
getDeclaringClassSimpleName
String getDeclaringClassSimpleName()
-
getName
String getName()
-
isAnnotationPresent
<T extends Annotation> boolean isAnnotationPresent(Class<T> metric)
-
getAnnotation
<T extends Annotation> AnnotationInfo getAnnotation(Class<T> metric)
-
getParameterTypeNames
String[] getParameterTypeNames()
-
-