public enum WebDriverPlatform extends Enum<WebDriverPlatform>
Enum Constant and Description |
---|
ANDROID
Represents the Android Platform.
|
IOS
Represents the iOS Platform.
|
UNDEFINED
Used to indicate that the current platform is not known to SeLion.
|
WEB
Used to indicate that the current platform is not a Mobile based platform.
|
Modifier and Type | Method and Description |
---|---|
static WebDriverPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebDriverPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebDriverPlatform IOS
public static final WebDriverPlatform ANDROID
public static final WebDriverPlatform WEB
public static final WebDriverPlatform UNDEFINED
public static WebDriverPlatform[] values()
for (WebDriverPlatform c : WebDriverPlatform.values()) System.out.println(c);
public static WebDriverPlatform 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 © 2016 PayPal Open Source. All rights reserved.