Enum Class AXPropertyName

java.lang.Object
java.lang.Enum<AXPropertyName>
io.webfolder.cdp.type.accessibility.AXPropertyName
All Implemented Interfaces:
Serializable, Comparable<AXPropertyName>, java.lang.constant.Constable

public enum AXPropertyName extends 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 Details

    • Busy

      @SerializedName("busy") public static final AXPropertyName Busy
    • Disabled

      @SerializedName("disabled") public static final AXPropertyName Disabled
    • Editable

      @SerializedName("editable") public static final AXPropertyName Editable
    • Focusable

      @SerializedName("focusable") public static final AXPropertyName Focusable
    • Focused

      @SerializedName("focused") public static final AXPropertyName Focused
    • Hidden

      @SerializedName("hidden") public static final AXPropertyName Hidden
    • HiddenRoot

      @SerializedName("hiddenRoot") public static final AXPropertyName HiddenRoot
    • Invalid

      @SerializedName("invalid") public static final AXPropertyName Invalid
    • Keyshortcuts

      @SerializedName("keyshortcuts") public static final AXPropertyName Keyshortcuts
    • Settable

      @SerializedName("settable") public static final AXPropertyName Settable
    • Roledescription

      @SerializedName("roledescription") public static final AXPropertyName Roledescription
    • Live

      @SerializedName("live") public static final AXPropertyName Live
    • Atomic

      @SerializedName("atomic") public static final AXPropertyName Atomic
    • Relevant

      @SerializedName("relevant") public static final AXPropertyName Relevant
    • Root

      @SerializedName("root") public static final AXPropertyName Root
    • Autocomplete

      @SerializedName("autocomplete") public static final AXPropertyName Autocomplete
    • HasPopup

      @SerializedName("hasPopup") public static final AXPropertyName HasPopup
    • Level

      @SerializedName("level") public static final AXPropertyName Level
    • Multiselectable

      @SerializedName("multiselectable") public static final AXPropertyName Multiselectable
    • Orientation

      @SerializedName("orientation") public static final AXPropertyName Orientation
    • Multiline

      @SerializedName("multiline") public static final AXPropertyName Multiline
    • Readonly

      @SerializedName("readonly") public static final AXPropertyName Readonly
    • Required

      @SerializedName("required") public static final AXPropertyName Required
    • Valuemin

      @SerializedName("valuemin") public static final AXPropertyName Valuemin
    • Valuemax

      @SerializedName("valuemax") public static final AXPropertyName Valuemax
    • Valuetext

      @SerializedName("valuetext") public static final AXPropertyName Valuetext
    • Checked

      @SerializedName("checked") public static final AXPropertyName Checked
    • Expanded

      @SerializedName("expanded") public static final AXPropertyName Expanded
    • Pressed

      @SerializedName("pressed") public static final AXPropertyName Pressed
    • Selected

      @SerializedName("selected") public static final AXPropertyName Selected
    • Activedescendant

      @SerializedName("activedescendant") public static final AXPropertyName Activedescendant
    • Controls

      @SerializedName("controls") public static final AXPropertyName Controls
    • Describedby

      @SerializedName("describedby") public static final AXPropertyName Describedby
    • Details

      @SerializedName("details") public static final AXPropertyName Details
    • Errormessage

      @SerializedName("errormessage") public static final AXPropertyName Errormessage
    • Flowto

      @SerializedName("flowto") public static final AXPropertyName Flowto
    • Labelledby

      @SerializedName("labelledby") public static final AXPropertyName Labelledby
    • Owns

      @SerializedName("owns") public static final AXPropertyName Owns
    • _UNKNOWN_

      public static final AXPropertyName _UNKNOWN_
  • Field Details

    • value

      public final String value
  • Method Details

    • values

      public static AXPropertyName[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AXPropertyName valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AXPropertyName>