public enum StandardLocation extends Enum<StandardLocation> implements JavaFileManager.Location
Enum Constant and Description |
---|
ANNOTATION_PROCESSOR_PATH
搜索注释处理器的位置。
|
CLASS_OUTPUT
新类文件的位置
|
CLASS_PATH
搜索用户类文件的位置。
|
NATIVE_HEADER_OUTPUT
新的本地头文件的位置。
|
PLATFORM_CLASS_PATH
搜索平台类的位置。
|
SOURCE_OUTPUT
新的源文件的位置。
|
SOURCE_PATH
搜索现有源文件的位置。
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
获取此位置的名称。
|
boolean |
isOutputLocation()
确定这是否是输出位置。
|
static JavaFileManager.Location |
locationFor(String name)
获取具有给定名称的位置对象。
|
static StandardLocation |
valueOf(String name)
以指定的名称返回此类型的枚举常量。
|
static StandardLocation[] |
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
|
public static final StandardLocation CLASS_OUTPUT
public static final StandardLocation SOURCE_OUTPUT
public static final StandardLocation CLASS_PATH
public static final StandardLocation SOURCE_PATH
public static final StandardLocation ANNOTATION_PROCESSOR_PATH
public static final StandardLocation PLATFORM_CLASS_PATH
public static final StandardLocation NATIVE_HEADER_OUTPUT
public static StandardLocation[] values()
for (StandardLocation c : StandardLocation.values())
System.out.println(c);
public static StandardLocation valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
NullPointerException
- 如果参数为空
public static JavaFileManager.Location locationFor(String name)
locationFor(x) == locationFor(y)
当且仅当x.equals(y)
。
当且仅当名称以"_OUTPUT"
结尾时,返回的位置将是输出位置。
name
- 一个名字
public String getName()
JavaFileManager.Location
getName
在接口
JavaFileManager.Location
public boolean isOutputLocation()
JavaFileManager.Location
isOutputLocation
在接口
JavaFileManager.Location
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.