public class ScannerConfig.DecoderParams.UpcEanParams
extends java.lang.Object
Example Usage: config.upcEanParams.booklandCode = true;
Modifier and Type | Field and Description |
---|---|
boolean |
booklandCode
Flag to enable Bookland code decoding.
|
ScannerConfig.BooklandFormat |
booklandFormat
Specifies the bookland format to use.
|
boolean |
convertDataBarToUpcEan
If this is set it converts DataBar barcodes to UPC/EAN format.
|
boolean |
couponCode
Enables Coupon code decoding.
|
ScannerConfig.CouponReport |
couponReport
Used to differentiate between old coupon (UPC/EAN and Code128)
and new GS1 DataBar Coupons.
|
boolean |
eanZeroExtend
Enable this parameter to add five leading zeros to decoded
EAN-8 symbols to make them compatible in format to EAN-13 symbols.
|
boolean |
linearDecode
Deprecated.
|
boolean |
randomWeightCheckDigit
Flag to enable random weight check digit verification.
|
boolean |
reducedQuietZone
Flag to Enable or Disable decoding of UPC barcodes with reduced quiet zones.
|
ScannerConfig.SecurityLevel |
securityLevel
The scanner of fers four levels of decode security for UPC/EAN
barcodes.
|
boolean |
supplemental2
Flag to enable length 2 supplementals.
|
boolean |
supplemental5
Flag to enable length 5 supplementals.
|
ScannerConfig.SupplementalMode |
supplementalMode
The supplemental mode.
|
int |
supplementalRetries
Retry count for auto-discriminating for supplementals.
|
public boolean booklandCode
Example Usage: upcEan.booklandCode = true;
public ScannerConfig.BooklandFormat booklandFormat
ScannerConfig.BooklandFormat
.
Example Usage: upcEan.booklandFormat = BooklandFormat.ISBN_10;
public boolean convertDataBarToUpcEan
Example Usage: upcEan.convertDataBarToUPCEAN = true;
public boolean couponCode
Example Usage: upcEan.couponCode = true;
@Deprecated public boolean linearDecode
public boolean randomWeightCheckDigit
Example Usage: upcEan.randomWeightCheckDigit = true;
public ScannerConfig.SecurityLevel securityLevel
ScannerConfig.SecurityLevel
.
Example Usage: upcEan.securityLevel = SecurityLevel.LEVEL_0;
public boolean supplemental2
Example Usage: upcEan.supplemental2 = false;
public boolean supplemental5
Example Usage: upcEan.supplemental5 = false;
public ScannerConfig.SupplementalMode supplementalMode
ScannerConfig.SupplementalMode
.
Example Usage: upcEan.supplementalMode = SupplementalMode.S_378_379;
public int supplementalRetries
Example Usage: upcEan.supplementalRetries = 10;
public ScannerConfig.CouponReport couponReport
ScannerConfig.CouponReport
.
Example Usage: upcEan.couponReport = CouponReport.OLD;
public boolean eanZeroExtend
public boolean reducedQuietZone
Example Usage: upcEan.reducedQuietZone = true;