public class ScannerConfig.DecoderParams.Code39 extends ScannerConfig.DecoderParams.BaseDecoder
Modifier and Type | Field and Description |
---|---|
boolean |
convertToCode32
Code 32 is a variant of Code 39 used by the Italian
pharmaceutical industry.
|
boolean |
fullAscii
Code 39 Full ASCII is a variant of Code 39 that pairs characters
to encode the full ASCII character set.
|
int |
length1
Use to set decode lengths.
|
int |
length2
Use to set decode lengths.
|
boolean |
reducedQuietZone
Flag to Enable or Disable decoding of Code 39 barcodes with reduced quiet zones.
|
boolean |
redundancy
Sets the reader to read the barcode twice before accepting data.
|
boolean |
reportCheckDigit
Transmit Code 39 data with or without the check digit.
|
boolean |
reportCode32Prefix
Scan the appropriate barcode to enable or disable adding the
prefix character "A" to all Code 32 barcodes.
|
ScannerConfig.SecurityLevel |
securityLevel
Options: Security level 0 , Security Level 1 , Security Level 2
and Security Level 3.
|
boolean |
verifyCheckDigit
Enable this feature to check the integrity of all Code 39 symbols
to verify that the data complies with a specified check digit
algorithm.
|
enabled
public int length1
Example Usage: code39.length1 = 0;
public int length2
Example Usage: code39.length2 = 55;
public boolean verifyCheckDigit
Example Usage: code39.verifyCheckDigit = false;
public boolean reportCheckDigit
Example Usage: code39.reportCheckDigit = true;
public boolean fullAscii
Example Usage: code39.fullAscii = true;
public boolean redundancy
Example Usage: code39.redundancy = true;
public boolean convertToCode32
Example Usage: code39.convertToCode32 = true;
public boolean reportCode32Prefix
Example Usage: code39.reportCode32Prefix = true;
public ScannerConfig.SecurityLevel securityLevel
ScannerConfig.SecurityLevel
.
Example Usage: code39.securityLevel = SecurityLevel.LEVEL_1;
public boolean reducedQuietZone
Example Usage: code39.reducedQuietZone = true;