public static enum Storefront.OrderFinancialStatus extends java.lang.Enum<Storefront.OrderFinancialStatus>
| Enum Constant and Description |
|---|
AUTHORIZED
Displayed as **Authorized**.
|
PAID
Displayed as **Paid**.
|
PARTIALLY_PAID
Displayed as **Partially paid**.
|
PARTIALLY_REFUNDED
Displayed as **Partially refunded**.
|
PENDING
Displayed as **Pending**.
|
REFUNDED
Displayed as **Refunded**.
|
UNKNOWN_VALUE |
VOIDED
Displayed as **Voided**.
|
| Modifier and Type | Method and Description |
|---|---|
static Storefront.OrderFinancialStatus |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.OrderFinancialStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.OrderFinancialStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.OrderFinancialStatus AUTHORIZED
public static final Storefront.OrderFinancialStatus PAID
public static final Storefront.OrderFinancialStatus PARTIALLY_PAID
public static final Storefront.OrderFinancialStatus PARTIALLY_REFUNDED
public static final Storefront.OrderFinancialStatus PENDING
public static final Storefront.OrderFinancialStatus REFUNDED
public static final Storefront.OrderFinancialStatus VOIDED
public static final Storefront.OrderFinancialStatus UNKNOWN_VALUE
public static Storefront.OrderFinancialStatus[] values()
for (Storefront.OrderFinancialStatus c : Storefront.OrderFinancialStatus.values()) System.out.println(c);
public static Storefront.OrderFinancialStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Storefront.OrderFinancialStatus fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.OrderFinancialStatus>