Enum AdminFunctions
- java.lang.Object
-
- java.lang.Enum<AdminFunctions>
-
- com.six.timapi.constants.AdminFunctions
-
- All Implemented Interfaces:
Serializable
,Comparable<AdminFunctions>
public enum AdminFunctions extends Enum<AdminFunctions>
Flag constants for FeatureType and OptionType sixml:AdminFunctions value.
Specification: retail.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATE
Activate function supported.ACTIVATE_SERVICE_MENU
Open service menu function supported.BALANCE
Balance function supported.CHANGE_SETTINGS
Change settings function supported.CLOSE_DIALOG_MODE
Close dialog mode function supported.CLOSE_MAINTENANCE_WINDOW
Close maintenance window request function supported.CLOSE_READER
Close reader request function supported.COUNTER_REQUEST
Counter request function supported.DCC_RATES
Dcc rates function supported.DEACTIVATE
Deactivate function supported.EJECT_CARD
Eject card request function supported.LOGIN
Login function supported.LOGOUT
Logout function supported.MOBILE_TOPUP_ISSUER_INFO
Retreive issuer-value-combinations for MobileTopup.OPEN_DIALOG_MODE
Open dialog mode function supported.OPEN_MAINTENANCE_WINDOW
Open maintenance window request function supported.OPEN_READER
Open reader request function supported.REBOOT
Reboot function supported.RECEIPT_REQUEST
Receipt request function supported.RECONCILIATION
Reconciliation function supported.RECONFIG
Reconfigurate function supported.SOFTWARE_UPDATE
Software update function supported.START_READER_CLEANING
Start reader cleaning function supported.TRANSMIT_LOG
Transmit log function supported.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AdminFunctions
valueOf(String name)
Returns the enum constant of this type with the specified name.static AdminFunctions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN
public static final AdminFunctions LOGIN
Login function supported.
Specification: retail.
-
LOGOUT
public static final AdminFunctions LOGOUT
Logout function supported.
Specification: retail.
-
RECONFIG
public static final AdminFunctions RECONFIG
Reconfigurate function supported.
Specification: retail.
-
REBOOT
public static final AdminFunctions REBOOT
Reboot function supported.
Specification: retail.
-
SOFTWARE_UPDATE
public static final AdminFunctions SOFTWARE_UPDATE
Software update function supported.
Specification: retail.
-
ACTIVATE
public static final AdminFunctions ACTIVATE
Activate function supported.
Specification: retail.
-
DEACTIVATE
public static final AdminFunctions DEACTIVATE
Deactivate function supported.
Specification: retail.
-
COUNTER_REQUEST
public static final AdminFunctions COUNTER_REQUEST
Counter request function supported.
Specification: retail.
-
RECONCILIATION
public static final AdminFunctions RECONCILIATION
Reconciliation function supported.
Specification: retail.
-
BALANCE
public static final AdminFunctions BALANCE
Balance function supported.
Specification: retail.
-
OPEN_DIALOG_MODE
public static final AdminFunctions OPEN_DIALOG_MODE
Open dialog mode function supported.
Specification: retail.
-
CLOSE_DIALOG_MODE
public static final AdminFunctions CLOSE_DIALOG_MODE
Close dialog mode function supported.
Specification: retail.
-
TRANSMIT_LOG
public static final AdminFunctions TRANSMIT_LOG
Transmit log function supported.
Specification: retail.
-
START_READER_CLEANING
public static final AdminFunctions START_READER_CLEANING
Start reader cleaning function supported. DEPRECATED DO NOT USE.
Specification: retail.
-
DCC_RATES
public static final AdminFunctions DCC_RATES
Dcc rates function supported.
Specification: retail.
-
CHANGE_SETTINGS
public static final AdminFunctions CHANGE_SETTINGS
Change settings function supported.
Specification: retail.
-
RECEIPT_REQUEST
public static final AdminFunctions RECEIPT_REQUEST
Receipt request function supported.
Specification: retail.
-
CLOSE_READER
public static final AdminFunctions CLOSE_READER
Close reader request function supported.
Specification: retail.
-
OPEN_READER
public static final AdminFunctions OPEN_READER
Open reader request function supported.
Specification: retail.
-
EJECT_CARD
public static final AdminFunctions EJECT_CARD
Eject card request function supported.
Specification: retail.
-
OPEN_MAINTENANCE_WINDOW
public static final AdminFunctions OPEN_MAINTENANCE_WINDOW
Open maintenance window request function supported.
Specification: retail.
-
CLOSE_MAINTENANCE_WINDOW
public static final AdminFunctions CLOSE_MAINTENANCE_WINDOW
Close maintenance window request function supported.
Specification: retail.
-
ACTIVATE_SERVICE_MENU
public static final AdminFunctions ACTIVATE_SERVICE_MENU
Open service menu function supported.
Specification: retail.
-
MOBILE_TOPUP_ISSUER_INFO
public static final AdminFunctions MOBILE_TOPUP_ISSUER_INFO
Retreive issuer-value-combinations for MobileTopup.
Specification: retail.
-
-
Method Detail
-
values
public static AdminFunctions[] 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 (AdminFunctions c : AdminFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminFunctions valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-