public interface DecodeResult
DecodeResult is an interface passed by
ReadListener.onRead(DecodeResult) to retrieve scanned data from the
decoder.| Modifier and Type | Method and Description |
|---|---|
BarcodeID |
getBarcodeID()
Returns the
BarcodeID of the read data. |
byte[] |
getRawData()
Returns the raw decoded data result from scanner as a byte array.
|
java.lang.String |
getText()
Returns the decoded result as a formatted String.
|
byte[] getRawData()
byte[] the resultant array containing the raw information
directly read from the scanner.java.lang.String getText()
String representing the decoded result.