public enum Stage extends Enum<Stage>
Java class for Stage.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Stage">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="scheduled"/>
<enumeration value="running"/>
<enumeration value="finished"/>
<enumeration value="pending"/>
<enumeration value="interrupted"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FINISHED |
INTERRUPTED |
PENDING |
RUNNING |
SCHEDULED |
| Modifier and Type | Method and Description |
|---|---|
static Stage |
fromValue(String v) |
String |
value() |
static Stage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stage SCHEDULED
public static final Stage RUNNING
public static final Stage FINISHED
public static final Stage PENDING
public static final Stage INTERRUPTED
public static Stage[] values()
for (Stage c : Stage.values()) System.out.println(c);
public static Stage 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 value()
Copyright © 2017 qameta.io. All rights reserved.