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