-
- All Superinterfaces:
-
ExpressionTree
,树
public interface AnnotatedTypeTree extends ExpressionTree
注释类型的树节点。 例如:@
annotationType String@
annotationType ( arguments ) Date- 从以下版本开始:
- 1.8
- 另请参见:
- “JSR 308:Java类型的注释”
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 List<? extends AnnotationTree>
getAnnotations()
返回与此类型表达式关联的注释。ExpressionTree
getUnderlyingType()
返回与注释关联的基础类型。
-
-
-
方法详细信息
-
getAnnotations
List<? extends AnnotationTree> getAnnotations()
返回与此类型表达式关联的注释。- 结果
- 注释
-
getUnderlyingType
ExpressionTree getUnderlyingType()
返回与注释关联的基础类型。- 结果
- 基础类型
-
-