public static enum Platform.BROWSER extends java.lang.Enum<Platform.BROWSER>
Enum Constant and Description |
---|
CHROME
Google Chrome.
|
FIREFOX
Mozilla Firefox.
|
INTERNET_EXPLORER
Microsoft internet Explorer.
|
OPERA
Opera.
|
OTHER
Navegador Web no identificado.
|
SAFARI
Apple Safari.
|
Modifier and Type | Method and Description |
---|---|
static Platform.BROWSER |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Platform.BROWSER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.BROWSER INTERNET_EXPLORER
public static final Platform.BROWSER FIREFOX
public static final Platform.BROWSER CHROME
public static final Platform.BROWSER SAFARI
public static final Platform.BROWSER OPERA
public static final Platform.BROWSER OTHER
public static Platform.BROWSER[] values()
for (Platform.BROWSER c : Platform.BROWSER.values()) System.out.println(c);
public static Platform.BROWSER valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null