Enum Class FirmwareUpdateData.Status

java.lang.Object
java.lang.Enum<FirmwareUpdateData.Status>
com.zebra.barcode.sdk.FirmwareUpdateData.Status
All Implemented Interfaces:
Serializable, Comparable<FirmwareUpdateData.Status>, Constable
Enclosing class:
FirmwareUpdateData

public static enum FirmwareUpdateData.Status extends Enum<FirmwareUpdateData.Status>
These constants are defined to represent result codes that can be returned by SDK API functions.
  • Enum Constant Details

    • SUCCESS

      public static final FirmwareUpdateData.Status SUCCESS
      A particular API function has completed successfully.
    • FAILURE

      public static final FirmwareUpdateData.Status FAILURE
      A particular API function has completed unsuccessfully.
    • SCANNER_NOT_AVAILABLE

      public static final FirmwareUpdateData.Status SCANNER_NOT_AVAILABLE
      A particular API function has completed unsuccessfully because a specified scanner was not available.
    • SCANNER_NOT_ACTIVE

      public static final FirmwareUpdateData.Status SCANNER_NOT_ACTIVE
      A particular API function has completed unsuccessfully because a specified scanner was not active.
    • INVALID_PARAMETER

      public static final FirmwareUpdateData.Status INVALID_PARAMETER
      A particular API function has completed unsuccessfully due to invalid input and/or output parameters.
    • RESPONSE_TIME_OUT

      public static final FirmwareUpdateData.Status RESPONSE_TIME_OUT
      A particular API function has completed unsuccessfully due to expiration of a response timeout during communication with a particular scanner.
    • OPCODE_NOT_SUPPORTED

      public static final FirmwareUpdateData.Status OPCODE_NOT_SUPPORTED
      A particular API function has completed unsuccessfully due to unsupported opcode.
    • SCANNER_ALREADY_ACTIVE

      public static final FirmwareUpdateData.Status SCANNER_ALREADY_ACTIVE
      Scanner that trying to establish the connection is already active
    • FIRMWARE_UPDATE_IN_PROGRESS

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_IN_PROGRESS
      A Firmware Upgrade is in progress for specified scanner.
    • FIRMWARE_UPDATE_ABORTED

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_ABORTED
      Firmware Upgrade aborted for specified scanner.
    • SCALE_NOT_PRESENTED

      public static final FirmwareUpdateData.Status SCALE_NOT_PRESENTED
      Scale is not available in the specified scanner.
    • FIRMWARE_UPDATE_FAILED_LOW_BATTERY_LEVEL

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_FAILED_LOW_BATTERY_LEVEL
      Firmware update is not allowed when the battery percentage is below 20%.
    • FIRMWARE_UPDATE_FAILED_COMMANDS_ARE_OUT_OF_SYNC

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_FAILED_COMMANDS_ARE_OUT_OF_SYNC
      Firmware update is failed due to commands are out of sync.
    • FIRMWARE_UPDATE_FAILED_HAS_OVERLAPPING_ADDRESS

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_FAILED_HAS_OVERLAPPING_ADDRESS
      Firmware update is failed due to firmware has overlapping address
    • FIRMWARE_UPDATE_FAILED_LOAD_COUNT_ERROR

      public static final FirmwareUpdateData.Status FIRMWARE_UPDATE_FAILED_LOAD_COUNT_ERROR
      Firmware update is failed due to a load count error
  • Field Details

    • value

      public int value
  • Method Details

    • values

      public static FirmwareUpdateData.Status[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FirmwareUpdateData.Status valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null