public final enum

Failure

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.datalogic.cradle.Failure

Class Overview

This enum lists failures managed by the Cradle.

Summary

Enum Values
Failure  FAILURE_BAD_LEVER_POSITION  The slot's lever is not in the correct position. 
Failure  FAILURE_CHARGER  The Cradle is experiencing a problem on the charger. 
Failure  FAILURE_DEVICE_NOT_CHARGING  The Cradle is experiencing a problem on its internal charging system  
Failure  FAILURE_FLASH_CORRUPTED  The cradle's internal flash is corrupted. 
Failure  FAILURE_GENERAL  General failure was detected. 
Failure  FAILURE_LEVER_NOT_CALIBRATED  The Cradle is experiencing a problem with lever calibration  
Failure  FAILURE_SOLENOID  The locking solenoid is too hot and the lever cannot be controlled until temperature will be reduced. 
Failure  FAILURE_SOLENOID_OVERTEMPERATURE  The locking solenoid is too hot and the lever cannot be controlled until temperature will be reduced. 
Failure  FAILURE_SPARE_BATTERY_AUTH  The Cradle is experiencing a problem on the battery authentication. 
Failure  FAILURE_SPARE_BATTERY_DEAD  The Cradle is experiencing a problem on the battery status. 
Failure  FAILURE_SPARE_BATTERY_EEPROM  The Cradle is experiencing a problem on the battery eeprom. 
Failure  FAILURE_UNKNOWN  No failure was detected. 
Failure  FAILURE_WLC_EOC_TIMEOUT  The device asked for an "end of power transmission" for too long. 
Failure  FAILURE_WLC_FOD  There is some metal object which prevents a successful wireless charge power transmission between the cradle and the device. 
Failure  FAILURE_WLC_GENERAL  The Cradle is experiencing a general problem on the wlc. 
Failure  FAILURE_WLC_TX  The Cradle is experiencing a problem on WLC's TX and it cannot power to the device. 
Failure  FAILURE_WRONG_DAISY_CHAIN_CONFIG  The current cradle's daisy chain configuration is not allowed. 
Public Methods
static Failure fromInt(int n)
Retrieves the corresponding Failure value, from a valid integer.
int toInt()
Converts the Failure enum to its integer representing value.
String toString()
static Failure valueOf(String name)
final static Failure[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Failure FAILURE_BAD_LEVER_POSITION

Added in revision 24

The slot's lever is not in the correct position.

public static final Failure FAILURE_CHARGER

Added in revision 33

The Cradle is experiencing a problem on the charger.

public static final Failure FAILURE_DEVICE_NOT_CHARGING

Added in revision 33

The Cradle is experiencing a problem on its internal charging system

public static final Failure FAILURE_FLASH_CORRUPTED

Added in revision 33

The cradle's internal flash is corrupted.

public static final Failure FAILURE_GENERAL

Added in revision 33

General failure was detected.

public static final Failure FAILURE_LEVER_NOT_CALIBRATED

Added in revision 33

The Cradle is experiencing a problem with lever calibration

public static final Failure FAILURE_SOLENOID

Added in revision 33

The locking solenoid is too hot and the lever cannot be controlled until temperature will be reduced.

public static final Failure FAILURE_SOLENOID_OVERTEMPERATURE

Added in revision 24

The locking solenoid is too hot and the lever cannot be controlled until temperature will be reduced.

public static final Failure FAILURE_SPARE_BATTERY_AUTH

Added in revision 33

The Cradle is experiencing a problem on the battery authentication.

public static final Failure FAILURE_SPARE_BATTERY_DEAD

Added in revision 33

The Cradle is experiencing a problem on the battery status.

public static final Failure FAILURE_SPARE_BATTERY_EEPROM

Added in revision 33

The Cradle is experiencing a problem on the battery eeprom.

public static final Failure FAILURE_UNKNOWN

Added in revision 24

No failure was detected.

public static final Failure FAILURE_WLC_EOC_TIMEOUT

Added in revision 24

The device asked for an "end of power transmission" for too long.

public static final Failure FAILURE_WLC_FOD

Added in revision 24

There is some metal object which prevents a successful wireless charge power transmission between the cradle and the device.

public static final Failure FAILURE_WLC_GENERAL

Added in revision 33

The Cradle is experiencing a general problem on the wlc.

public static final Failure FAILURE_WLC_TX

Added in revision 24

The Cradle is experiencing a problem on WLC's TX and it cannot power to the device.

public static final Failure FAILURE_WRONG_DAISY_CHAIN_CONFIG

Added in revision 24

The current cradle's daisy chain configuration is not allowed.

Public Methods

public static Failure fromInt (int n)

Added in revision 24

Retrieves the corresponding Failure value, from a valid integer.

Parameters
n int
Returns
  • Failure the corresponding one.

public int toInt ()

Added in revision 24

Converts the Failure enum to its integer representing value.

Returns
  • int

public String toString ()

public static Failure valueOf (String name)

Added in revision 24

public static final Failure[] values ()

Added in revision 24