|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド | |||||||||
java.lang.Objectjava.lang.Enum<ConstructorInvocationKind>
org.ashikunep.irenka.dom.ConstructorInvocationKind
public enum ConstructorInvocationKind
| 列挙型定数の概要 | |
|---|---|
SUPER
スーパークラスのコンストラクタ起動であることを表す。 |
|
THIS
代替コンストラクタ起動であることを表す。 |
|
UNKNOWN
不明であることを表す。 |
|
| メソッドの概要 | |
|---|---|
String |
toString()
|
static ConstructorInvocationKind |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 |
static ConstructorInvocationKind[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。 |
| クラス java.lang.Enum から継承されたメソッド |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| クラス java.lang.Object から継承されたメソッド |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| 列挙型定数の詳細 |
|---|
public static final ConstructorInvocationKind THIS
public static final ConstructorInvocationKind SUPER
public static final ConstructorInvocationKind UNKNOWN
| メソッドの詳細 |
|---|
public static final ConstructorInvocationKind[] values()
for(ConstructorInvocationKind c : ConstructorInvocationKind.values())
System.out.println(c);
public static ConstructorInvocationKind valueOf(String name)
name - 返される列挙型定数の名前
IllegalArgumentException - 指定された名前を持つ定数を
この列挙型が持っていない場合public String toString()
Enum<ConstructorInvocationKind> 内の toString
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド | |||||||||