|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
java.lang.Object java.lang.Enum<ElementType> java.lang.annotation.ElementType
public enum ElementType
程序元素型別。此列舉型別的常數提供了 Java 程序中宣告的元素的簡單分類別。
這些常數與 Target
元註釋型別一起使用,以指定在什麼情況下使用註釋型別是合法的。
列舉常數摘要 | |
---|---|
ANNOTATION_TYPE
註釋型別宣告 |
|
CONSTRUCTOR
建構子宣告 |
|
FIELD
欄位宣告(包括列舉常數) |
|
LOCAL_VARIABLE
區域變數宣告 |
|
METHOD
方法宣告 |
|
PACKAGE
包宣告 |
|
PARAMETER
參數宣告 |
|
TYPE
類別、介面(包括註釋型別)或列舉宣告 |
方法摘要 | |
---|---|
static ElementType |
valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 |
static ElementType[] |
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 ElementType TYPE
public static final ElementType FIELD
public static final ElementType METHOD
public static final ElementType PARAMETER
public static final ElementType CONSTRUCTOR
public static final ElementType LOCAL_VARIABLE
public static final ElementType ANNOTATION_TYPE
public static final ElementType PACKAGE
方法詳細資訊 |
---|
public static final ElementType[] values()
for(ElementType c : ElementType.values()) System.out.println(c);
public static ElementType valueOf(String name)
指定要返回的列舉常數的名稱。
-
如果該列舉型別沒有帶有指定名稱的常數,
- 則拋出 IllegalArgumentException
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。