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