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