java.lang.Objectjava.lang.Enum<ClientConfig.DefaultLogo>
com.globalcharge.android.ClientConfig.DefaultLogo
public static enum ClientConfig.DefaultLogo
Enum Constant Summary | |
---|---|
CLIENT_LOGO
Use client logo that exists in the Assest folder of their projects if this logo is not found system will fall back to NO_LOGO |
|
GLOBAL_CHARGE_LOGO
Use GlobalCharge Logo bundled with the billing library |
|
NO_LOGO
Use No Logo |
Method Summary | |
---|---|
static ClientConfig.DefaultLogo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ClientConfig.DefaultLogo[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ClientConfig.DefaultLogo NO_LOGO
public static final ClientConfig.DefaultLogo GLOBAL_CHARGE_LOGO
public static final ClientConfig.DefaultLogo CLIENT_LOGO
Method Detail |
---|
public static ClientConfig.DefaultLogo[] values()
for (ClientConfig.DefaultLogo c : ClientConfig.DefaultLogo.values()) System.out.println(c);
public static ClientConfig.DefaultLogo 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 name
java.lang.NullPointerException
- if the argument is null