public enum ShopifyRecurringOrderState extends Enum<ShopifyRecurringOrderState>
| Enum Constant and Description |
|---|
BILLED |
CANCELED |
FAILED |
ONHOLD |
PENDING |
PROCESSING |
| Modifier and Type | Method and Description |
|---|---|
static ShopifyRecurringOrderState |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static ShopifyRecurringOrderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShopifyRecurringOrderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShopifyRecurringOrderState PENDING
public static final ShopifyRecurringOrderState ONHOLD
public static final ShopifyRecurringOrderState PROCESSING
public static final ShopifyRecurringOrderState CANCELED
public static final ShopifyRecurringOrderState BILLED
public static final ShopifyRecurringOrderState FAILED
public static ShopifyRecurringOrderState[] values()
for (ShopifyRecurringOrderState c : ShopifyRecurringOrderState.values()) System.out.println(c);
public static ShopifyRecurringOrderState 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 getValue()
public String toString()
toString in class Enum<ShopifyRecurringOrderState>public static ShopifyRecurringOrderState fromValue(String text)
Copyright © 2021. All rights reserved.