public static enum Storefront.DigitalWallet extends java.lang.Enum<Storefront.DigitalWallet>
| Enum Constant and Description |
|---|
ANDROID_PAY
Android Pay.
|
APPLE_PAY
Apple Pay.
|
GOOGLE_PAY
Google Pay.
|
SHOPIFY_PAY
Shopify Pay.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.DigitalWallet |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.DigitalWallet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.DigitalWallet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.DigitalWallet ANDROID_PAY
public static final Storefront.DigitalWallet APPLE_PAY
public static final Storefront.DigitalWallet GOOGLE_PAY
public static final Storefront.DigitalWallet SHOPIFY_PAY
public static final Storefront.DigitalWallet UNKNOWN_VALUE
public static Storefront.DigitalWallet[] values()
for (Storefront.DigitalWallet c : Storefront.DigitalWallet.values()) System.out.println(c);
public static Storefront.DigitalWallet 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.DigitalWallet fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.DigitalWallet>