public enum AnalysisState extends Enum<AnalysisState>
Enum Constant and Description |
---|
ABORTING
Stopping the analysis without trying to preserve data accumulated in the current
phase.
|
ENDING
Stopping the analysis but trying to preserve data accumulated in the current phase.
|
RUNNING
The analysis is currently running.
|
TERMINATED
The analysis isn't running.
|
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 RUNNING
public static final AnalysisState ABORTING
public static final AnalysisState ENDING
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 null