Class DataBarExtendedParameters
java.lang.Object
com.aspose.barcode.barcoderecognition.BaseExtendedParameters
com.aspose.barcode.barcoderecognition.DataBarExtendedParameters
Stores a DataBar additional information of recognized barcode
BarCodeReader reader = new BarCodeReader("test.png", DecodeType.DATABAR_OMNI_DIRECTIONAL);
for(BarCodeResult result : reader.readBarCodes())
System.out.println("BarCode Type: " + result.getCodeTypeName());
System.out.println("BarCode CodeText: " + result.getCodeText());
System.out.println("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity());
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns a value indicating whether this instance is equal to a specifiedvalue. inthashCode()Returns the hash code for this instance.booleanGets the DataBar 2D composite component flag.toString()Returns a human-readable string representation of this. Methods inherited from class com.aspose.barcode.barcoderecognition.BaseExtendedParameters
isEmpty
-
Method Details
-
is2DCompositeComponent
public boolean is2DCompositeComponent()Gets the DataBar 2D composite component flag. Default value is false.- Returns:
- The DataBar 2D composite component flag.
-
equals
Returns a value indicating whether this instance is equal to a specifiedvalue. -
hashCode
public int hashCode()Returns the hash code for this instance. -
toString
Returns a human-readable string representation of this.
-