com.deque.axe.android.constants.AxeStatus 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({
AxeStatus.PASS,
AxeStatus.FAIL,
AxeStatus.INAPPLICABLE,
AxeStatus.INCOMPLETE,
AxeStatus.IGNORED
})
public @interface AxeStatus {
String PASS = "PASS";
String FAIL = "FAIL";
String INAPPLICABLE = "INAPPLICABLE";
String INCOMPLETE = "INCOMPLETE";
String IGNORED = "IGNORED";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy