public static enum BenchResult.State extends Enum<BenchResult.State>
| Enum Constant and Description |
|---|
ABORTED |
CREATED |
ERROR |
FINISHED |
INITIALIZING |
PENDING |
PREPARING |
RUNNING |
SCALING |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFinalState() |
static BenchResult.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BenchResult.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BenchResult.State CREATED
public static final BenchResult.State PENDING
public static final BenchResult.State SCALING
public static final BenchResult.State PREPARING
public static final BenchResult.State INITIALIZING
public static final BenchResult.State RUNNING
public static final BenchResult.State FINISHED
public static final BenchResult.State ABORTED
public static final BenchResult.State ERROR
public static BenchResult.State[] values()
for (BenchResult.State c : BenchResult.State.values()) System.out.println(c);
public static BenchResult.State 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 nullpublic boolean isFinalState()
Copyright © 2023. All rights reserved.