Enum WCAGProgressStatus
- java.lang.Object
-
- java.lang.Enum<WCAGProgressStatus>
-
- org.verapdf.wcag.algorithms.semanticalgorithms.utils.WCAGProgressStatus
-
- All Implemented Interfaces:
Serializable,Comparable<WCAGProgressStatus>
public enum WCAGProgressStatus extends Enum<WCAGProgressStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTRAST_DETECTIONDOCUMENT_POSTPROCESSINGDOCUMENT_PREPROCESSINGLINES_PREPROCESSINGLIST_DETECTIONPARAGRAPH_DETECTIONTABLE_BORDER_DETECTIONTABLE_DETECTIONTABLE_VALIDATIONTOC_DETECTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static WCAGProgressStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static WCAGProgressStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_PREPROCESSING
public static final WCAGProgressStatus DOCUMENT_PREPROCESSING
-
DOCUMENT_POSTPROCESSING
public static final WCAGProgressStatus DOCUMENT_POSTPROCESSING
-
LINES_PREPROCESSING
public static final WCAGProgressStatus LINES_PREPROCESSING
-
PARAGRAPH_DETECTION
public static final WCAGProgressStatus PARAGRAPH_DETECTION
-
CONTRAST_DETECTION
public static final WCAGProgressStatus CONTRAST_DETECTION
-
LIST_DETECTION
public static final WCAGProgressStatus LIST_DETECTION
-
TOC_DETECTION
public static final WCAGProgressStatus TOC_DETECTION
-
TABLE_VALIDATION
public static final WCAGProgressStatus TABLE_VALIDATION
-
TABLE_BORDER_DETECTION
public static final WCAGProgressStatus TABLE_BORDER_DETECTION
-
TABLE_DETECTION
public static final WCAGProgressStatus TABLE_DETECTION
-
-
Method Detail
-
values
public static WCAGProgressStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WCAGProgressStatus c : WCAGProgressStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WCAGProgressStatus valueOf(String name)
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
-
getValue
public String getValue()
-
-