public enum EBrowserType extends Enum<EBrowserType>
Enum Constant and Description |
---|
CHROME |
FIREFOX |
INTERNET_EXPLORER |
OPERA |
OTHER |
SAFARI |
Modifier and Type | Method and Description |
---|---|
static EBrowserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBrowserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBrowserType INTERNET_EXPLORER
public static final EBrowserType FIREFOX
public static final EBrowserType CHROME
public static final EBrowserType OPERA
public static final EBrowserType SAFARI
public static final EBrowserType OTHER
public static EBrowserType[] values()
for (EBrowserType c : EBrowserType.values()) System.out.println(c);
public static EBrowserType 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 © 2019 XIMA MEDIA GmbH. All rights reserved.