public enum ReportJobStatus extends Enum<ReportJobStatus>
Java class for ReportJobStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReportJobStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="COMPLETED"/>
<enumeration value="IN_PROGRESS"/>
<enumeration value="FAILED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMPLETED
The
ReportJob has completed successfully and is ready to download. |
FAILED
The
ReportJob has failed to run to completion. |
IN_PROGRESS
The
ReportJob is still being executed. |
| Modifier and Type | Method and Description |
|---|---|
static ReportJobStatus |
fromValue(String v) |
String |
value() |
static ReportJobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportJobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportJobStatus COMPLETED
ReportJob has completed successfully and is ready to download.public static final ReportJobStatus IN_PROGRESS
ReportJob is still being executed.public static final ReportJobStatus FAILED
ReportJob has failed to run to completion.public static ReportJobStatus[] values()
for (ReportJobStatus c : ReportJobStatus.values()) System.out.println(c);
public static ReportJobStatus 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()
public static ReportJobStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.