public enum AnalysisState extends Enum<AnalysisState>
Enum Constant and Description |
---|
DONE |
FAILED |
IN_PROGRESS |
PARTIALLY_FAILED |
TERMINATED |
TERMINATING |
Modifier and Type | Method and Description |
---|---|
static AnalysisState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisState IN_PROGRESS
public static final AnalysisState PARTIALLY_FAILED
public static final AnalysisState DONE
public static final AnalysisState FAILED
public static final AnalysisState TERMINATING
public static final AnalysisState TERMINATED
public static AnalysisState[] values()
for (AnalysisState c : AnalysisState.values()) System.out.println(c);
public static AnalysisState 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 © 2023. All Rights Reserved.