public static enum HistoryEntry.STATE extends Enum<HistoryEntry.STATE>
| Enum Constant and Description |
|---|
FINISHED
Execution finished
|
RUNNING
Execution ongoing
|
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel()
Returns the human-readable label for this result.
|
static HistoryEntry.STATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoryEntry.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoryEntry.STATE RUNNING
public static final HistoryEntry.STATE FINISHED
public static HistoryEntry.STATE[] values()
for (HistoryEntry.STATE c : HistoryEntry.STATE.values()) System.out.println(c);
public static HistoryEntry.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 String getLabel()
Copyright © 2019. All rights reserved.