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