public enum AccessibilityNodeRole extends java.lang.Enum<AccessibilityNodeRole>
| Enum Constant and Description |
|---|
ANNOTATION |
FORM_FIELD |
IMAGE |
LINK |
SIGNATURE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static AccessibilityNodeRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessibilityNodeRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessibilityNodeRole TEXT
public static final AccessibilityNodeRole LINK
public static final AccessibilityNodeRole ANNOTATION
public static final AccessibilityNodeRole FORM_FIELD
public static final AccessibilityNodeRole SIGNATURE
public static final AccessibilityNodeRole IMAGE
public static AccessibilityNodeRole[] values()
for (AccessibilityNodeRole c : AccessibilityNodeRole.values()) System.out.println(c);
public static AccessibilityNodeRole 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