public enum AnalysisStatus extends Enum<AnalysisStatus>
| 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 |
|---|---|
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–2019 ODPi. All rights reserved.