Package com.six.timapi.constants
Enum DialogFunctions
- java.lang.Object
-
- java.lang.Enum<DialogFunctions>
-
- com.six.timapi.constants.DialogFunctions
-
- All Implemented Interfaces:
Serializable
,Comparable<DialogFunctions>
public enum DialogFunctions extends Enum<DialogFunctions>
Flag constants for FeatureType and OptionType sixml:DialogFunctions value.
Specification: retail.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PRINT_ON_TERMINAL
Print on terminal function supported.SEND_CARD_COMMAND
Send card command function supported.SHOW_DIALOG
Show dialog function supported.SHOW_SIGNATURE_CAPTURE
Show signature capture function supported.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DialogFunctions
valueOf(String name)
Returns the enum constant of this type with the specified name.static DialogFunctions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHOW_SIGNATURE_CAPTURE
public static final DialogFunctions SHOW_SIGNATURE_CAPTURE
Show signature capture function supported.
Specification: retail.
-
SHOW_DIALOG
public static final DialogFunctions SHOW_DIALOG
Show dialog function supported.
Specification: retail.
-
SEND_CARD_COMMAND
public static final DialogFunctions SEND_CARD_COMMAND
Send card command function supported.
Specification: retail.
-
PRINT_ON_TERMINAL
public static final DialogFunctions PRINT_ON_TERMINAL
Print on terminal function supported.
Specification: retail.
-
-
Method Detail
-
values
public static DialogFunctions[] 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 (DialogFunctions c : DialogFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DialogFunctions 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
-
-