public enum DriverCommand extends Enum<DriverCommand>
| Enum Constant and Description |
|---|
SEND_KEYS_TO_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static DriverCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DriverCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DriverCommand SEND_KEYS_TO_ELEMENT
public String command
public static DriverCommand[] values()
for (DriverCommand c : DriverCommand.values()) System.out.println(c);
public static DriverCommand valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.