IAnnotatedElement.IsAnnotationPresent(Class) 方法

定义

如果指定类型的批注在此元素上为 <em>present</em> ,则返回 true,否则返回 false。

[Android.Runtime.Register("isAnnotationPresent", "(Ljava/lang/Class;)Z", "GetIsAnnotationPresent_Ljava_lang_Class_Handler:Java.Lang.Reflect.IAnnotatedElement, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public virtual bool IsAnnotationPresent (Java.Lang.Class annotationClass);
[<Android.Runtime.Register("isAnnotationPresent", "(Ljava/lang/Class;)Z", "GetIsAnnotationPresent_Ljava_lang_Class_Handler:Java.Lang.Reflect.IAnnotatedElement, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member IsAnnotationPresent : Java.Lang.Class -> bool
override this.IsAnnotationPresent : Java.Lang.Class -> bool

参数

annotationClass
Class

对应于批注类型的类对象

返回

如果此元素上存在指定批注类型的批注,则为 true,否则为 false

属性

注解

如果指定类型的批注在此元素上为 <em>present</em> ,则返回 true,否则返回 false。 此方法主要用于方便访问标记批注。

此方法返回的真值等效于: getAnnotation(annotationClass) != null

默认方法的正文指定为上述代码。

在 1.5 中添加。

适用于 . 的 java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于