public class ScannerConfig.DecoderParams.Msi extends ScannerConfig.DecoderParams.BaseDecoder
Modifier and Type | Field and Description |
---|---|
ScannerConfig.CheckDigit |
checkDigits
With MSI symbols, one check digit is mandatory and always
verified by the reader.
|
ScannerConfig.CheckDigitScheme |
checkDigitScheme
Two algorithms are possible for the verification of the second
MSI check digit.
|
int |
length1
Use to set decode lengths.
|
int |
length2
Use to set decode lengths.
|
boolean |
redundancy
Sets the reader to read the barcode twice before accepting data.
|
boolean |
reportCheckDigit
Transmit MSI data with or without the check digit.
|
enabled
public int length1
Example Usage: msi.length1 = 4;
public int length2
Example Usage: msi.length2 = 55;
public boolean redundancy
Example Usage: msi.redundancy = true;
public ScannerConfig.CheckDigit checkDigits
ScannerConfig.CheckDigit
.
Example Usage: msi.checkDigits = CheckDigit.ONE;
public ScannerConfig.CheckDigitScheme checkDigitScheme
ScannerConfig.CheckDigitScheme
.
Example Usage: msi.check_digit_scheme = CheckDigitScheme.MOD_10_10;
public boolean reportCheckDigit
Example Usage: msi.reportCheckDigit = false;