|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
java.lang.Object java.lang.Enum<StandardLocation> javax.tools.StandardLocation
public enum StandardLocation
檔案物件的標準位置。
列舉常數摘要 | |
---|---|
ANNOTATION_PROCESSOR_PATH
搜尋註釋處理器的位置。 |
|
CLASS_OUTPUT
新的類別檔案的位置。 |
|
CLASS_PATH
搜尋使用者類別檔案的位置。 |
|
PLATFORM_CLASS_PATH
搜尋平臺類別的位置。 |
|
SOURCE_OUTPUT
新的源檔案的位置。 |
|
SOURCE_PATH
搜尋現有源檔案的位置。 |
方法摘要 | |
---|---|
String |
getName()
獲取此位置的名稱。 |
boolean |
isOutputLocation()
確定此位置是否為輸出位置。 |
static JavaFileManager.Location |
locationFor(String name)
使用給定名稱獲取位置物件。 |
static StandardLocation |
valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 |
static StandardLocation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
從類別 java.lang.Enum 繼承的方法 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
從類別 java.lang.Object 繼承的方法 |
---|
getClass, notify, notifyAll, wait, wait, wait |
列舉常數詳細資訊 |
---|
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[] values()
for(StandardLocation c : StandardLocation.values()) System.out.println(c);
public static StandardLocation valueOf(String name)
指定要返回的列舉常數的名稱。
-
如果該列舉型別沒有帶有指定名稱的常數,
- 則拋出 IllegalArgumentExceptionpublic static JavaFileManager.Location locationFor(String name)
x.equals(y)
時 locationFor(x) == locationFor(y)
。當且僅當名稱以 "_OUTPUT"
結束時,返回的位置將是一個輸出位置。
name
- 名稱
public String getName()
JavaFileManager.Location
複製的描述
JavaFileManager.Location
中的 getName
public boolean isOutputLocation()
JavaFileManager.Location
複製的描述
JavaFileManager.Location
中的 isOutputLocation
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。