-
- All Superinterfaces:
-
Tag
@Deprecated(since="9", forRemoval=true) public interface ParamTag extends Tag
Deprecated, for removal: This API element is subject to removal in a future version.The declarations in this package have been superseded by those in the packagejdk.javadoc.doclet
. For more information, see the Migration Guide in the documentation for that package.表示@param文档标记。 存储参数标记的名称和注释部分。 @param标记可以表示方法或构造函数参数,也可以表示类型参数。
-
-
方法摘要
所有方法 实例方法 抽象方法 弃用的方法 变量和类型 方法 描述 boolean
isTypeParameter()
不推荐使用,要删除:此API元素将在以后的版本中删除。如果此ParamTag
对应于类型参数,则返回true。String
parameterComment()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回与此ParamTag
关联的参数注释。String
parameterName()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回与此ParamTag
关联的参数或类型参数的名称。-
声明方法的接口 com.sun.javadoc.Tag
firstSentenceTags, holder, inlineTags, kind, name, position, text, toString
-
-
-
-
方法详细信息
-
parameterName
String parameterName()
Deprecated, for removal: This API element is subject to removal in a future version.返回与此ParamTag
关联的参数或类型参数的名称。 分隔类型参数的尖括号不是其名称的一部分。- 结果
- 参数名称。
-
parameterComment
String parameterComment()
Deprecated, for removal: This API element is subject to removal in a future version.返回与此ParamTag
关联的参数注释。- 结果
- 参数评论。
-
isTypeParameter
boolean isTypeParameter()
Deprecated, for removal: This API element is subject to removal in a future version.如果此ParamTag
对应于类型参数,则返回true。 如果它对应于方法或构造函数的普通参数,则返回false。- 结果
-
如果此
ParamTag
对应于类型参数,则ParamTag
true。 - 从以下版本开始:
- 1.5
-
-