Package com.six.timapi.constants
Enum ReconfigMode
- java.lang.Object
-
- java.lang.Enum<ReconfigMode>
-
- com.six.timapi.constants.ReconfigMode
-
- All Implemented Interfaces:
Serializable,Comparable<ReconfigMode>
public enum ReconfigMode extends Enum<ReconfigMode>
Defines the type of the Reconfig Request. "FullReconfig" (default, can be omitted in this case) for a full reconfiguration; "AcqInit" reconfigure one specific or all acquirers; "TrmConfig" reconfigure terminal parameters.
The following values are valid:
Specification: retail.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQ_INITOnly an acquirer init is performed instead of combined terminal config & acquirer init.FULL_RECONFIG(Default, can therefore be omitted) Perform standard behaviour; terminal config and acquirer init.TRM_CONFIGOnly a terminal config is performed instead of combined terminal config & acquirer init.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReconfigModevalueOf(String name)Returns the enum constant of this type with the specified name.static ReconfigMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL_RECONFIG
public static final ReconfigMode FULL_RECONFIG
(Default, can therefore be omitted) Perform standard behaviour; terminal config and acquirer init.
Specification: retail.
-
TRM_CONFIG
public static final ReconfigMode TRM_CONFIG
Only a terminal config is performed instead of combined terminal config & acquirer init.
Specification: retail.
-
ACQ_INIT
public static final ReconfigMode ACQ_INIT
Only an acquirer init is performed instead of combined terminal config & acquirer init.
Specification: retail.
-
-
Method Detail
-
values
public static ReconfigMode[] 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 (ReconfigMode c : ReconfigMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReconfigMode 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
-
-