public enum AnalysisStatus extends Enum<AnalysisStatus> implements IAEnum
| Enum Constant and Description |
|---|
ERROR |
LIGHTWEIGHT_REVIEW |
NOT_ANALYZABLE |
NOT_DONE |
NOT_FOUND |
PROCESSING_COMPLETED |
PROCESSING_STARTED |
REVIEW_COMPLETED |
REVIEW_ONLY |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static AnalysisStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisStatus NOT_DONE
public static final AnalysisStatus PROCESSING_STARTED
public static final AnalysisStatus PROCESSING_COMPLETED
public static final AnalysisStatus REVIEW_COMPLETED
public static final AnalysisStatus ERROR
public static final AnalysisStatus NOT_FOUND
public static final AnalysisStatus NOT_ANALYZABLE
public static final AnalysisStatus REVIEW_ONLY
public static final AnalysisStatus LIGHTWEIGHT_REVIEW
public static AnalysisStatus[] values()
for (AnalysisStatus c : AnalysisStatus.values()) System.out.println(c);
public static AnalysisStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2020 ODPi. All rights reserved.