public enum MobileSelector extends java.lang.Enum<MobileSelector>
Enum Constant and Description |
---|
ACCESSIBILITY |
ANDROID_UI_AUTOMATOR |
IOS_CLASS_CHAIN |
IOS_PREDICATE_STRING |
IOS_UI_AUTOMATION |
WINDOWS_UI_AUTOMATION |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static MobileSelector |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MobileSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileSelector ACCESSIBILITY
public static final MobileSelector ANDROID_UI_AUTOMATOR
public static final MobileSelector IOS_UI_AUTOMATION
public static final MobileSelector IOS_PREDICATE_STRING
public static final MobileSelector IOS_CLASS_CHAIN
public static final MobileSelector WINDOWS_UI_AUTOMATION
public static MobileSelector[] values()
for (MobileSelector c : MobileSelector.values()) System.out.println(c);
public static MobileSelector 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<MobileSelector>