public enum BrowserChannel extends Enum<BrowserChannel>
| Enum Constant and Description |
|---|
CHROME |
CHROME_BETA |
CHROME_CANARY |
CHROME_DEV |
FIREFOX_STABLE |
MSEDGE |
MSEDGE_BETA |
MSEDGE_CANARY |
MSEDGE_DEV |
| Modifier and Type | Method and Description |
|---|---|
static BrowserChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BrowserChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrowserChannel CHROME
public static final BrowserChannel CHROME_BETA
public static final BrowserChannel CHROME_DEV
public static final BrowserChannel CHROME_CANARY
public static final BrowserChannel MSEDGE
public static final BrowserChannel MSEDGE_BETA
public static final BrowserChannel MSEDGE_DEV
public static final BrowserChannel MSEDGE_CANARY
public static final BrowserChannel FIREFOX_STABLE
public static BrowserChannel[] values()
for (BrowserChannel c : BrowserChannel.values()) System.out.println(c);
public static BrowserChannel 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 © 2021. All rights reserved.