Package io.jenkins.plugins
Enum ProvarAutomation.Browser
- java.lang.Object
-
- java.lang.Enum<ProvarAutomation.Browser>
-
- io.jenkins.plugins.ProvarAutomation.Browser
-
- All Implemented Interfaces:
Serializable
,Comparable<ProvarAutomation.Browser>
- Enclosing class:
- ProvarAutomation
public static enum ProvarAutomation.Browser extends Enum<ProvarAutomation.Browser>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Chrome
Chrome_Headless
Edge
Edge_Legacy
Firefox
Safari
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProvarAutomation.Browser
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProvarAutomation.Browser[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Chrome_Headless
public static final ProvarAutomation.Browser Chrome_Headless
-
Chrome
public static final ProvarAutomation.Browser Chrome
-
Edge
public static final ProvarAutomation.Browser Edge
-
Edge_Legacy
public static final ProvarAutomation.Browser Edge_Legacy
-
Firefox
public static final ProvarAutomation.Browser Firefox
-
Safari
public static final ProvarAutomation.Browser Safari
-
-
Method Detail
-
values
public static ProvarAutomation.Browser[] 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 (ProvarAutomation.Browser c : ProvarAutomation.Browser.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProvarAutomation.Browser 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
-
-