public enum ReconciliationOrderReportStatus extends Enum<ReconciliationOrderReportStatus>
Java class for ReconciliationOrderReportStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReconciliationOrderReportStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DRAFT"/>
<enumeration value="RECONCILED"/>
<enumeration value="REVERTED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DRAFT
The starting status of a reconciliation order report.
|
RECONCILED
The final status of a reconciliation order report.
|
REVERTED
A similar status to
DRAFT. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ReconciliationOrderReportStatus |
fromValue(String v) |
String |
value() |
static ReconciliationOrderReportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReconciliationOrderReportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReconciliationOrderReportStatus DRAFT
DRAFT state. Reconciliation order reports
can be submitted with the SubmitReconciliationOrderReports action to change
the status to RECONCILED.public static final ReconciliationOrderReportStatus RECONCILED
RECONCILED state. Reconciliation order reports
can be reverted with the RevertReconciliationOrderReports action to change the
status to REVERTED.public static final ReconciliationOrderReportStatus REVERTED
DRAFT.
Rows are updatable in the REVERTED state. Reconciliation order reports
can be submitted with the SubmitReconciliationOrderReports action to change the
status to RECONCILED.public static final ReconciliationOrderReportStatus UNKNOWN
public static ReconciliationOrderReportStatus[] values()
for (ReconciliationOrderReportStatus c : ReconciliationOrderReportStatus.values()) System.out.println(c);
public static ReconciliationOrderReportStatus 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 ReconciliationOrderReportStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.