public static enum ExperimentStatus.States extends Enum<ExperimentStatus.States>
| Enum Constant and Description |
|---|
EVALUATION
The task generation has ended and the benchmark is evaluating.
|
INIT
Benchmark and system are still initializing.
|
PREPARATION
The platform is still preparing the experiment, e.g., pulling Docker images.
|
STARTED
Benchmarking has started
|
STOPPED
The benchmark has stopped
|
| Modifier and Type | Field and Description |
|---|---|
String |
description |
| Modifier and Type | Method and Description |
|---|---|
static ExperimentStatus.States |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExperimentStatus.States[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExperimentStatus.States PREPARATION
public static final ExperimentStatus.States INIT
public static final ExperimentStatus.States STARTED
public static final ExperimentStatus.States EVALUATION
public static final ExperimentStatus.States STOPPED
public final String description
public static ExperimentStatus.States[] values()
for (ExperimentStatus.States c : ExperimentStatus.States.values()) System.out.println(c);
public static ExperimentStatus.States 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 © 2017–2018. All rights reserved.