列挙型 DeclarationInfo.Kind
- java.lang.ObjectSE
-
- java.lang.EnumSE<DeclarationInfo.Kind>
-
- jakarta.enterprise.lang.model.declarations.DeclarationInfo.Kind
- 実装されたすべてのインターフェース:
SerializableSE
,ComparableSE<DeclarationInfo.Kind>
- 含まれているインターフェース:
- DeclarationInfo
public static enum DeclarationInfo.Kind extends EnumSE<DeclarationInfo.Kind>
メソッドのサマリー
すべてのメソッド 静的メソッド 具象メソッド 修飾子と型 メソッド 説明 static DeclarationInfo.Kind
valueOf(StringSE name)
指定された名前を持つこの型の列挙定数を返します。static DeclarationInfo.Kind[]
values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
列挙定数の詳細
PACKAGE
public static final DeclarationInfo.Kind PACKAGE
CLASS
public static final DeclarationInfo.Kind CLASS
METHOD
public static final DeclarationInfo.Kind METHOD
PARAMETER
public static final DeclarationInfo.Kind PARAMETER
FIELD
public static final DeclarationInfo.Kind FIELD
RECORD_COMPONENT
public static final DeclarationInfo.Kind RECORD_COMPONENT
メソッドの詳細
values
public static DeclarationInfo.Kind[] values()
この列挙型の定数を含む配列を、宣言されている順序で返します。このメソッドは、次のように定数を反復するために使用できます。for (DeclarationInfo.Kind c : DeclarationInfo.Kind.values()) System.out.println(c);
- 戻り値:
- この列挙型の定数を宣言されている順序で含む配列
valueOf
public static DeclarationInfo.Kind valueOf(StringSE name)
指定された名前を持つこの型の列挙定数を返します。文字列は、この型の列挙定数を宣言するために使用される識別子と正確に一致する必要があります。(余分な空白文字は許可されません。)- パラメーター:
name
- 返される列挙定数の名前。- 戻り値:
- 指定された名前の列挙定数
- 例外:
IllegalArgumentExceptionSE
- この列挙型に指定された名前の定数がない場合NullPointerExceptionSE
- 引数が null の場合