public static enum DriverFactory.Driver extends Enum<DriverFactory.Driver>
Modifier and Type | Method and Description |
---|---|
static DriverFactory.Driver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DriverFactory.Driver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DriverFactory.Driver IE
public static final DriverFactory.Driver CHROME
public static final DriverFactory.Driver FIREFOX
public static DriverFactory.Driver[] values()
for (DriverFactory.Driver c : DriverFactory.Driver.values()) System.out.println(c);
public static DriverFactory.Driver 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 © 2023 NoraUi. All rights reserved.