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-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core 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.PLATFORM,
AxeStandard.BEST_PRACTICE
})
public @interface AxeStandard {
String WCAG_20 = "WCAG 2.0";
String WCAG_21 = "WCAG 2.1";
String PLATFORM = "Platform";
String BEST_PRACTICE = "Best Practice";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy