com.BTPaySDK
Enum OnReceiverListener.EVENT_MSR_Types

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

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


Enum Constant Summary
EVENT_MSR_BACKSPACE_KEY
           
EVENT_MSR_CANCEL_KEY
           
EVENT_MSR_CARD_DATA
           
EVENT_MSR_DATA_ERROR
           
EVENT_MSR_ENTER_KEY
           
EVENT_MSR_UNKNOWN
           
 
Method Summary
static OnReceiverListener.EVENT_MSR_Types valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OnReceiverListener.EVENT_MSR_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_MSR_UNKNOWN

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_UNKNOWN

EVENT_MSR_CARD_DATA

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_CARD_DATA

EVENT_MSR_CANCEL_KEY

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_CANCEL_KEY

EVENT_MSR_BACKSPACE_KEY

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_BACKSPACE_KEY

EVENT_MSR_ENTER_KEY

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_ENTER_KEY

EVENT_MSR_DATA_ERROR

public static final OnReceiverListener.EVENT_MSR_Types EVENT_MSR_DATA_ERROR
Method Detail

values

public static OnReceiverListener.EVENT_MSR_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_MSR_Types c : OnReceiverListener.EVENT_MSR_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_MSR_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