Package com.axway.ats.uiengine
Enum AbstractRealBrowserDriver.BrowserType
- java.lang.Object
-
- java.lang.Enum<AbstractRealBrowserDriver.BrowserType>
-
- com.axway.ats.uiengine.AbstractRealBrowserDriver.BrowserType
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractRealBrowserDriver.BrowserType>
- Enclosing class:
- AbstractRealBrowserDriver
public static enum AbstractRealBrowserDriver.BrowserType extends Enum<AbstractRealBrowserDriver.BrowserType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractRealBrowserDriver.BrowserTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractRealBrowserDriver.BrowserType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Chrome
public static final AbstractRealBrowserDriver.BrowserType Chrome
-
FireFox
public static final AbstractRealBrowserDriver.BrowserType FireFox
-
Edge
public static final AbstractRealBrowserDriver.BrowserType Edge
-
Safari
public static final AbstractRealBrowserDriver.BrowserType Safari
-
Opera
public static final AbstractRealBrowserDriver.BrowserType Opera
-
InternetExplorer
public static final AbstractRealBrowserDriver.BrowserType InternetExplorer
-
PhantomJS
public static final AbstractRealBrowserDriver.BrowserType PhantomJS
-
-
Method Detail
-
values
public static AbstractRealBrowserDriver.BrowserType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractRealBrowserDriver.BrowserType c : AbstractRealBrowserDriver.BrowserType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractRealBrowserDriver.BrowserType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-