public static enum CommandLineValues.ProcessingMode extends java.lang.Enum<CommandLineValues.ProcessingMode>
| Enum Constant and Description |
|---|
MODE_COPY |
MODE_DELETE |
MODE_MOVE |
| Modifier and Type | Method and Description |
|---|---|
static CommandLineValues.ProcessingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandLineValues.ProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandLineValues.ProcessingMode MODE_COPY
public static final CommandLineValues.ProcessingMode MODE_MOVE
public static final CommandLineValues.ProcessingMode MODE_DELETE
public static CommandLineValues.ProcessingMode[] values()
for (CommandLineValues.ProcessingMode c : CommandLineValues.ProcessingMode.values()) System.out.println(c);
public static CommandLineValues.ProcessingMode 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