public enum DriverManagerType extends Enum<DriverManagerType>
| Enum Constant and Description |
|---|
CHROME |
CHROMIUM |
EDGE |
FIREFOX |
IEXPLORER |
OPERA |
SAFARI |
| Modifier and Type | Method and Description |
|---|---|
String |
browserClass() |
String |
getBrowserName() |
String |
getBrowserNameLowerCase() |
String |
getNameLowerCase() |
static DriverManagerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DriverManagerType |
valueOfDisplayName(String displayName) |
static DriverManagerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DriverManagerType CHROME
public static final DriverManagerType FIREFOX
public static final DriverManagerType OPERA
public static final DriverManagerType EDGE
public static final DriverManagerType IEXPLORER
public static final DriverManagerType CHROMIUM
public static final DriverManagerType SAFARI
public static DriverManagerType[] values()
for (DriverManagerType c : DriverManagerType.values()) System.out.println(c);
public static DriverManagerType 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 nullpublic String browserClass()
public String getNameLowerCase()
public String getBrowserName()
public String getBrowserNameLowerCase()
public static DriverManagerType valueOfDisplayName(String displayName)
Copyright © 2022. All rights reserved.