Package com.microsoft.playwright.options
Enum BrowserChannel
- java.lang.Object
-
- java.lang.Enum<BrowserChannel>
-
- com.microsoft.playwright.options.BrowserChannel
-
- All Implemented Interfaces:
Serializable,Comparable<BrowserChannel>
@Deprecated public enum BrowserChannel extends Enum<BrowserChannel>
Deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHROMEDeprecated.CHROME_BETADeprecated.CHROME_CANARYDeprecated.CHROME_DEVDeprecated.FIREFOX_STABLEDeprecated.MSEDGEDeprecated.MSEDGE_BETADeprecated.MSEDGE_CANARYDeprecated.MSEDGE_DEVDeprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BrowserChannelvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static BrowserChannel[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHROME
public static final BrowserChannel CHROME
Deprecated.
-
CHROME_BETA
public static final BrowserChannel CHROME_BETA
Deprecated.
-
CHROME_DEV
public static final BrowserChannel CHROME_DEV
Deprecated.
-
CHROME_CANARY
public static final BrowserChannel CHROME_CANARY
Deprecated.
-
MSEDGE
public static final BrowserChannel MSEDGE
Deprecated.
-
MSEDGE_BETA
public static final BrowserChannel MSEDGE_BETA
Deprecated.
-
MSEDGE_DEV
public static final BrowserChannel MSEDGE_DEV
Deprecated.
-
MSEDGE_CANARY
public static final BrowserChannel MSEDGE_CANARY
Deprecated.
-
FIREFOX_STABLE
@Deprecated public static final BrowserChannel FIREFOX_STABLE
Deprecated.
-
-
Method Detail
-
values
public static BrowserChannel[] values()
Deprecated.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 (BrowserChannel c : BrowserChannel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BrowserChannel valueOf(String name)
Deprecated.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
-
-