Enum AXPropertyName
- java.lang.Object
-
- java.lang.Enum<AXPropertyName>
-
- org.openqa.selenium.devtools.v102.accessibility.model.AXPropertyName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AXPropertyName>
public enum AXPropertyName extends java.lang.Enum<AXPropertyName>
Values of AXProperty name: - from 'busy' to 'roledescription': states which apply to every AX node - from 'live' to 'root': attributes which apply to nodes in live regions - from 'autocomplete' to 'valuetext': attributes which apply to widgets - from 'checked' to 'selected': states which apply to widgets - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AXPropertyName
fromString(java.lang.String s)
java.lang.String
toJson()
java.lang.String
toString()
static AXPropertyName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AXPropertyName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUSY
public static final AXPropertyName BUSY
-
DISABLED
public static final AXPropertyName DISABLED
-
EDITABLE
public static final AXPropertyName EDITABLE
-
FOCUSABLE
public static final AXPropertyName FOCUSABLE
-
FOCUSED
public static final AXPropertyName FOCUSED
-
HIDDEN
public static final AXPropertyName HIDDEN
-
HIDDENROOT
public static final AXPropertyName HIDDENROOT
-
INVALID
public static final AXPropertyName INVALID
-
KEYSHORTCUTS
public static final AXPropertyName KEYSHORTCUTS
-
SETTABLE
public static final AXPropertyName SETTABLE
-
ROLEDESCRIPTION
public static final AXPropertyName ROLEDESCRIPTION
-
LIVE
public static final AXPropertyName LIVE
-
ATOMIC
public static final AXPropertyName ATOMIC
-
RELEVANT
public static final AXPropertyName RELEVANT
-
ROOT
public static final AXPropertyName ROOT
-
AUTOCOMPLETE
public static final AXPropertyName AUTOCOMPLETE
-
HASPOPUP
public static final AXPropertyName HASPOPUP
-
LEVEL
public static final AXPropertyName LEVEL
-
MULTISELECTABLE
public static final AXPropertyName MULTISELECTABLE
-
ORIENTATION
public static final AXPropertyName ORIENTATION
-
MULTILINE
public static final AXPropertyName MULTILINE
-
READONLY
public static final AXPropertyName READONLY
-
REQUIRED
public static final AXPropertyName REQUIRED
-
VALUEMIN
public static final AXPropertyName VALUEMIN
-
VALUEMAX
public static final AXPropertyName VALUEMAX
-
VALUETEXT
public static final AXPropertyName VALUETEXT
-
CHECKED
public static final AXPropertyName CHECKED
-
EXPANDED
public static final AXPropertyName EXPANDED
-
MODAL
public static final AXPropertyName MODAL
-
PRESSED
public static final AXPropertyName PRESSED
-
SELECTED
public static final AXPropertyName SELECTED
-
ACTIVEDESCENDANT
public static final AXPropertyName ACTIVEDESCENDANT
-
CONTROLS
public static final AXPropertyName CONTROLS
-
DESCRIBEDBY
public static final AXPropertyName DESCRIBEDBY
-
DETAILS
public static final AXPropertyName DETAILS
-
ERRORMESSAGE
public static final AXPropertyName ERRORMESSAGE
-
FLOWTO
public static final AXPropertyName FLOWTO
-
LABELLEDBY
public static final AXPropertyName LABELLEDBY
-
OWNS
public static final AXPropertyName OWNS
-
-
Method Detail
-
values
public static AXPropertyName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AXPropertyName c : AXPropertyName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AXPropertyName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromString
public static AXPropertyName fromString(java.lang.String s)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<AXPropertyName>
-
toJson
public java.lang.String toJson()
-
-