Enum SettingType

    • Enum Constant Detail

      • DISPLAY_BRIGHTNESS

        public static final SettingType DISPLAY_BRIGHTNESS

        Brightness of the display.

        Specification: retail.

      • DISPLAY_CONTRAST

        public static final SettingType DISPLAY_CONTRAST

        Contrast of the display.

        Specification: retail.

      • KEYPAD_TONES

        public static final SettingType KEYPAD_TONES

        Volume of the key press tones.

        Specification: retail.

      • ALERT_TONES

        public static final SettingType ALERT_TONES

        Volume of the alert tones.

        Specification: retail.

      • LANGUAGE

        public static final SettingType LANGUAGE

        Language of the EFT. Valid values: [-] as supported by the terminal. e.g. "de", "de-at", "en", "nl-be"

        Specification: retail.

      • POWER_MANAGEMENT_MODE

        public static final SettingType POWER_MANAGEMENT_MODE

        Selection of active power management profile. Valid values are fully devices dependent.

        Specification: retail.

    • Method Detail

      • values

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

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