public class ScannerConfig.DecoderParams.Code128 extends ScannerConfig.DecoderParams.BaseDecoder
Modifier and Type | Field and Description |
---|---|
boolean |
checkIsbtTable
The ISBT specification includes a table that lists several types
of ISBT barcodes that are commonly used in pairs.
|
boolean |
enableEan128
Flag to enable EAN128 subtype.
|
boolean |
enableIsbt128
Flag to enable ISBT128 .
|
boolean |
enablePlain
Flag to enable other sub types besides GS1-128 and ISBT-128
|
ScannerConfig.Isbt128ContactMode |
isbt128ConcatMode
Select an option for concatenating pairs of ISBT code types.
|
int |
length1
Use to set decode lengths.
|
int |
length2
Use to set decode lengths.
|
boolean |
reducedQuietZone
Flag to Enable or Disable decoding of Code 128 barcodes with reduced quiet zones.
|
boolean |
redundancy
Sets the reader to read the barcode twice before accepting data.
|
ScannerConfig.SecurityLevel |
securityLevel
The scanner of fers four levels of decode security for Code 128
barcodes.
|
enabled
public int length1
Example Usage: int length1 = code128.length1;
public int length2
Example Usage: int length2 = code128.length2;
public boolean redundancy
Example Usage: code128.redundancy = true;
public boolean enablePlain
Example Usage: code128.enablePlain = false;
public boolean enableEan128
Example Usage: code128.enableEan128 = true;
public boolean enableIsbt128
Example Usage: code128.enableIsbt128 = true;
public ScannerConfig.Isbt128ContactMode isbt128ConcatMode
ScannerConfig.Isbt128ContactMode
.
Example Usage: code128.isbt128ConcatMode = Isbt128ContactMode.NONE;
public boolean checkIsbtTable
Example Usage: code128.checkIsbtTable = true;
public ScannerConfig.SecurityLevel securityLevel
ScannerConfig.SecurityLevel
.
Example Usage: code128.securityLevel = SecurityLevel.LEVEL_0;
public boolean reducedQuietZone
Example Usage: code128.reducedQuietZone = true;