| Enum Constant and Description |
|---|
AMAZON_APP_STORE |
APPLE_APP_STORE |
CLOUD_MOOLAH |
FACEBOOK_STORE |
GOOGLE_PLAY |
MAC_APP_STORE |
NOT_SPECIFIED |
SAMSUNG_APPS |
TIZEN_STORE |
WIN_RT |
XIAOMI_MI_PAY |
| Modifier and Type | Method and Description |
|---|---|
static Store |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Store[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Store NOT_SPECIFIED
public static final Store GOOGLE_PLAY
public static final Store AMAZON_APP_STORE
public static final Store CLOUD_MOOLAH
public static final Store SAMSUNG_APPS
public static final Store XIAOMI_MI_PAY
public static final Store MAC_APP_STORE
public static final Store APPLE_APP_STORE
public static final Store WIN_RT
public static final Store TIZEN_STORE
public static final Store FACEBOOK_STORE
public static Store[] values()
for (Store c : Store.values()) System.out.println(c);
public static Store 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 null