public static enum ControlFile.OutputMode extends java.lang.Enum<ControlFile.OutputMode>
Modifier and Type | Method and Description |
---|---|
static ControlFile.OutputMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlFile.OutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null