com.txtnation.android
Enum ClientConfig.DefaultLogo

java.lang.Object
  extended by java.lang.Enum<ClientConfig.DefaultLogo>
      extended by com.txtnation.android.ClientConfig.DefaultLogo
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ClientConfig.DefaultLogo>
Enclosing class:
ClientConfig

public static enum ClientConfig.DefaultLogo
extends java.lang.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
TXTNATION_LOGO
          Use txtNation 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

NO_LOGO

public static final ClientConfig.DefaultLogo NO_LOGO
Use No Logo


TXTNATION_LOGO

public static final ClientConfig.DefaultLogo TXTNATION_LOGO
Use txtNation Logo bundled with the billing library


CLIENT_LOGO

public static final ClientConfig.DefaultLogo 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

Method Detail

values

public static ClientConfig.DefaultLogo[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ClientConfig.DefaultLogo c : ClientConfig.DefaultLogo.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ClientConfig.DefaultLogo valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null