Enum MaintenanceType

    • Enum Constant Detail

      • CLEAN_READERS

        public static final MaintenanceType CLEAN_READERS

        Start the process of cleaning card readers

        Specification: remote.

      • CALIBRATE_TOUCH_SCREEN

        public static final MaintenanceType CALIBRATE_TOUCH_SCREEN

        Start the process of touch screen calibration.

        Specification: remote.

      • TRANSMIT_TELD

        public static final MaintenanceType TRANSMIT_TELD

        Transmit terminal event log data.

        Specification: remote.

    • Method Detail

      • values

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

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