public enum MobileOperation extends java.lang.Enum<MobileOperation>
| Enum Constant and Description |
|---|
CARD_FORMAT |
CARD_INITIALIZE |
CARD_PERSONALIZE |
CARD_READ |
MAKE_SYSTEM_PAYMENT |
MAKE_USER_PAYMENT |
MANAGE_CONTACTS |
MAP_DIRECTORY |
NFC_ACTIVATE
Activate the phone to allow make payments using it as identifier.
|
NFC_DEACTIVATE
Deactivate the phone not allowing making payments.
|
POS_ASSIGN
A.k.a access client assign
|
POS_UNASSIGN
A.k.a access client unassigns
|
RECEIVE_PAYMENT |
REDEEM_VOUCHER |
USERS_SEARCH |
VIEW_ACCOUNT_INFORMATION |
VIEW_USER_PROFILE |
VOUCHERS |
| Modifier and Type | Method and Description |
|---|---|
static MobileOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MobileOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileOperation VIEW_USER_PROFILE
public static final MobileOperation VIEW_ACCOUNT_INFORMATION
public static final MobileOperation MAKE_USER_PAYMENT
public static final MobileOperation MAKE_SYSTEM_PAYMENT
public static final MobileOperation RECEIVE_PAYMENT
public static final MobileOperation VOUCHERS
public static final MobileOperation REDEEM_VOUCHER
public static final MobileOperation MANAGE_CONTACTS
public static final MobileOperation USERS_SEARCH
public static final MobileOperation MAP_DIRECTORY
public static final MobileOperation NFC_ACTIVATE
public static final MobileOperation NFC_DEACTIVATE
public static final MobileOperation POS_ASSIGN
public static final MobileOperation POS_UNASSIGN
public static final MobileOperation CARD_INITIALIZE
public static final MobileOperation CARD_PERSONALIZE
public static final MobileOperation CARD_READ
public static final MobileOperation CARD_FORMAT
public static MobileOperation[] values()
for (MobileOperation c : MobileOperation.values()) System.out.println(c);
public static MobileOperation 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