SimulScanReaderInfo

EMDK For Android 2.3

SimulScanReaderInfo provides information of the reader device.

Example Usage:


readerInfo.getFriendlyName();

Public Methods

getFriendlyName

public String getFriendlyName()

Returns the friendly name of the Device.

Example Usage:


String name = readerInfo.getFriendlyName();

Returns:

java.lang.String

getDeviceType

public DeviceType getDeviceType()

Returns the reader device type

Example Usage:


SimulScanDeviceType deviceType = readerInfo.getDeviceType();

Returns:

com.symbol.emdk.simulscan.SimulScanReaderInfo.DeviceType

Public Enums

SimulScanReaderInfo.DeviceType

List of supported scanner device type.

Example Usage:


SimulScanDeviceType.CAMERA;

Values:

  • CAMERA -The Scanner device class is camera.

  • IMAGER -The scanner device class is imager.

  • UNDEFINED -The scanner device class is not defined.