public static enum ControlFile.OutputMode extends java.lang.Enum<ControlFile.OutputMode>
| 修飾子と型 | メソッドと説明 |
|---|---|
static ControlFile.OutputMode | valueOf(java.lang.String name) 指定された名前を持つこの型の列挙定数を返します。 |
static ControlFile.OutputMode[] | values() この列挙型の定数を含む配列を、宣言されている順序で返します。 |
public static final ControlFile.OutputMode INSERT
public static final ControlFile.OutputMode UPDATE
public static final ControlFile.OutputMode MERGE
public static ControlFile.OutputMode[] values()
for (ControlFile.OutputMode c : ControlFile.OutputMode.values()) System.out.println(c);
public static ControlFile.OutputMode valueOf(java.lang.String name)
name - 返される列挙定数の名前。java.lang.IllegalArgumentException - この列挙型に指定された名前の定数がない場合 java.lang.NullPointerException - 引数が null の場合