Enum DialogFunctions

    • 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 name
        NullPointerException - if the argument is null