Enum StatusFunctions

    • Enum Constant Detail

      • FEATURE_REQUEST

        public static final StatusFunctions FEATURE_REQUEST

        Feature request function supported.

        Specification: retail.

      • TERMINAL_STATUS

        public static final StatusFunctions TERMINAL_STATUS

        Terminal status function supported.

        Specification: retail.

      • SYSTEM_INFORMATION

        public static final StatusFunctions SYSTEM_INFORMATION

        System information function supported.

        Specification: retail.

      • APPLICATION_INFORMATION

        public static final StatusFunctions APPLICATION_INFORMATION

        Application information function supported.

        Specification: retail.

      • HARDWARE_INFORMATION

        public static final StatusFunctions HARDWARE_INFORMATION

        Hardware information function supported.

        Specification: retail.

      • KEEP_ALIVE

        public static final StatusFunctions KEEP_ALIVE

        Keep alive function supported.

        Specification: retail.

      • LICENSE_CHANGED

        public static final StatusFunctions LICENSE_CHANGED

        Licence changed function supported.

        Specification: retail.

      • VAS_INFO

        public static final StatusFunctions VAS_INFO

        Vas info function supported.

        Specification: retail.

      • ERROR

        public static final StatusFunctions ERROR

        Error function supported.

        Specification: retail.

      • CHANGE_LANGUAGE

        public static final StatusFunctions CHANGE_LANGUAGE

        Change language function supported.

        Specification: retail.

      • KEY_PRESS

        public static final StatusFunctions KEY_PRESS

        Key press function supported.

        Specification: retail.

      • CONFIGURATION_CHANGED

        public static final StatusFunctions CONFIGURATION_CHANGED

        Configuration changed function supported.

        Specification: retail.

      • WAKE_UP

        public static final StatusFunctions WAKE_UP

        WakeUp function supported.

        Specification: retail.

      • TRANSACTION_INFO_REQUEST

        public static final StatusFunctions TRANSACTION_INFO_REQUEST

        Transaction information function supported.

        Specification: retail.

    • Method Detail

      • values

        public static StatusFunctions[] 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 (StatusFunctions c : StatusFunctions.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StatusFunctions 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