- java.lang.Object
-
- java.lang.Enum<DocumentationTool.Location>
-
- javax.tools.DocumentationTool.Location
-
- Enclosing interface:
- DocumentationTool
public static enum DocumentationTool.Location extends Enum<DocumentationTool.Location> implements JavaFileManager.Location
特定于DocumentationTool
的位置。- 另请参见:
-
StandardLocation
-
-
Enum Constant Summary
Enum Constants Enum Constant 描述 DOCLET_PATH
搜索doclet的位置。DOCUMENTATION_OUTPUT
新文档文件的位置。TAGLET_PATH
搜索标记的位置。
-
方法摘要
所有方法 静态方法 具体的方法 变量和类型 方法 描述 static DocumentationTool.Location
valueOf(String name)
返回具有指定名称的此类型的枚举常量。static DocumentationTool.Location[]
values()
按照声明的顺序返回一个包含此枚举类型常量的数组。-
声明方法的类 java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
声明方法的接口 javax.tools.JavaFileManager.Location
getName, isModuleOrientedLocation, isOutputLocation
-
-
-
-
Enum Constant Detail
-
DOCUMENTATION_OUTPUT
public static final DocumentationTool.Location DOCUMENTATION_OUTPUT
新文档文件的位置。
-
DOCLET_PATH
public static final DocumentationTool.Location DOCLET_PATH
搜索doclet的位置。
-
TAGLET_PATH
public static final DocumentationTool.Location TAGLET_PATH
搜索标记的位置。
-
-
方法详细信息
-
values
public static DocumentationTool.Location[] values()
按照声明的顺序返回一个包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:for (DocumentationTool.Location c : DocumentationTool.Location.values()) System.out.println(c);
- 结果
- 包含此枚举类型常量的数组,按声明的顺序排列
-
valueOf
public static DocumentationTool.Location valueOf(String name)
返回具有指定名称的此类型的枚举常量。 该字符串必须与用于声明此类型中的枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常量
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- if the argument is null
-
-