com.deque.axe.android.constants.AxeStandard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.axe.android.constants;
import androidx.annotation.StringDef;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.SOURCE)
@StringDef({
AxeStandard.WCAG_20,
AxeStandard.WCAG_21,
AxeStandard.WCAG_22,
AxeStandard.PLATFORM,
AxeStandard.BEST_PRACTICE
})
public @interface AxeStandard {
String WCAG_20 = "WCAG 2.0";
String WCAG_21 = "WCAG 2.1";
String WCAG_22 = "WCAG 2.2";
String PLATFORM = "Platform";
String BEST_PRACTICE = "Best Practice";
}