Package io.didomi.sdk.core.accessibility
Enum AccessibilityClassName
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum AccessibilityClassName extends Enum<AccessibilityClassName>
Enum used to contain strings that describe UI items' type to screen readers. In most cases screen readers will get this description for free. For example a Button will provide a "button" class name. In some rare cases we might want a TextView to be considered by screen readers as other types e.g.: a button.
-
-
Method Summary
Modifier and Type Method Description final AccessibilityClassNamevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<AccessibilityClassName>values()Returns an array containing the constants of this enum type, in the order they're declared. final CharSequencegetValue()-
-
Method Detail
-
valueOf
final AccessibilityClassName valueOf(String value)
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.)
-
values
final Array<AccessibilityClassName> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getValue
final CharSequence getValue()
-
-
-
-