- java.lang.Object
-
- java.lang.Enum<Taglet.Location>
-
- jdk.javadoc.doclet.Taglet.Location
-
- 实现的所有接口
-
Serializable
,Comparable<Taglet.Location>
- Enclosing interface:
- Taglet
public static enum Taglet.Location extends Enum<Taglet.Location>
可以使用标签的位置类型。
-
-
Enum Constant Detail
-
OVERVIEW
public static final Taglet.Location OVERVIEW
在概述文档中。
-
模块
public static final Taglet.Location MODULE
在模块的文档中。
-
PACKAGE
public static final Taglet.Location PACKAGE
在包的文档中。
-
TYPE
public static final Taglet.Location TYPE
在类,接口或枚举的文档中。
-
构造器
public static final Taglet.Location CONSTRUCTOR
在构造函数的文档中。
-
METHOD
public static final Taglet.Location METHOD
在方法的文档中。
-
字段
public static final Taglet.Location FIELD
在字段的文档中。
-
-
方法详细信息
-
values
public static Taglet.Location[] values()
按照声明的顺序返回一个包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:for (Taglet.Location c : Taglet.Location.values()) System.out.println(c);
- 结果
- 包含此枚举类型常量的数组,按声明的顺序排列
-
valueOf
public static Taglet.Location valueOf(String name)
返回具有指定名称的此类型的枚举常量。 该字符串必须与用于声明此类型中的枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常量
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- 如果参数为null
-
-