Enum AccessibilityGrouping
- All Implemented Interfaces:
Comparable<AccessibilityGrouping>
Controls how a component and its descendants participate in the semantic tree.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInfer exposure from the role, content, actions, and component type.Omit this node but promote its semantic children.Omit this node and its entire semantic subtree.Expose this node and its semantic descendants.Expose this node and omit all semantic descendants.Expose a single node whose label and description include its descendants. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessibilityGroupingReturns the enum constant of this type with the specified name.static AccessibilityGrouping[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
-
Enum Constant Details
-
AUTO
Infer exposure from the role, content, actions, and component type. -
LEAF
Expose this node and omit all semantic descendants. -
GROUP
Expose this node and its semantic descendants. -
MERGE_DESCENDANTS
Expose a single node whose label and description include its descendants. -
EXCLUDE
Omit this node but promote its semantic children. -
EXCLUDE_SUBTREE
Omit this node and its entire semantic subtree.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-