com.BTPaySDK
Enum OnReceiverListener.EVENT_PINPAD_Types

java.lang.Object
  extended by java.lang.Enum<OnReceiverListener.EVENT_PINPAD_Types>
      extended by com.BTPaySDK.OnReceiverListener.EVENT_PINPAD_Types
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OnReceiverListener.EVENT_PINPAD_Types>
Enclosing interface:
OnReceiverListener

public static enum OnReceiverListener.EVENT_PINPAD_Types
extends java.lang.Enum<OnReceiverListener.EVENT_PINPAD_Types>


Enum Constant Summary
EVENT_PINPAD_ACCOUNT
           
EVENT_PINPAD_AMOUNT
           
EVENT_PINPAD_CANCEL
           
EVENT_PINPAD_DATA_ERROR
           
EVENT_PINPAD_ENCRYPTED_DATA
           
EVENT_PINPAD_ENCRYPTED_PIN
           
EVENT_PINPAD_FUNCKEY
           
EVENT_PINPAD_NUMERIC
           
EVENT_PINPAD_TIMEOUT
           
EVENT_PINPAD_UNKNOWN
           
 
Method Summary
static OnReceiverListener.EVENT_PINPAD_Types valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OnReceiverListener.EVENT_PINPAD_Types[] 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

EVENT_PINPAD_UNKNOWN

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_UNKNOWN

EVENT_PINPAD_ENCRYPTED_PIN

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_ENCRYPTED_PIN

EVENT_PINPAD_NUMERIC

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_NUMERIC

EVENT_PINPAD_AMOUNT

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_AMOUNT

EVENT_PINPAD_ACCOUNT

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_ACCOUNT

EVENT_PINPAD_ENCRYPTED_DATA

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_ENCRYPTED_DATA

EVENT_PINPAD_FUNCKEY

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_FUNCKEY

EVENT_PINPAD_CANCEL

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_CANCEL

EVENT_PINPAD_TIMEOUT

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_TIMEOUT

EVENT_PINPAD_DATA_ERROR

public static final OnReceiverListener.EVENT_PINPAD_Types EVENT_PINPAD_DATA_ERROR
Method Detail

values

public static OnReceiverListener.EVENT_PINPAD_Types[] 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 (OnReceiverListener.EVENT_PINPAD_Types c : OnReceiverListener.EVENT_PINPAD_Types.values())
    System.out.println(c);

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

valueOf

public static OnReceiverListener.EVENT_PINPAD_Types 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