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