Class Code128ExtendedParameters

java.lang.Object
com.aspose.barcode.barcoderecognition.BaseExtendedParameters
com.aspose.barcode.barcoderecognition.Code128ExtendedParameters

public final class Code128ExtendedParameters extends BaseExtendedParameters

Stores special data of Code128 recognized barcode

Represents the recognized barcode's region and barcode angle


 This sample shows how to get code128 raw values
 
 BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345");
 generator.save("test.png");
 BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_128);
 for(BarCodeResult result : reader.readBarCodes())
 {
    System.out.println("BarCode Type: " + result.getCodeTypeName());
    System.out.println("BarCode CodeText: " + result.getCodeText());
    System.out.println("Code128 Data Portions: " + result.getExtended().getCode128());
 }
 

  • Method Details

    • getCode128DataPortions

      public Code128DataPortion[] getCode128DataPortions()

      Gets Code128DataPortion array of recognized Code128 barcode

      Value: Array of the Code128DataPortion.
    • equals

      public boolean equals(Object obj)

      Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value.

      Overrides:
      equals in class Object
      Parameters:
      obj - An System.Object value to compare to this instance.
      Returns:
      <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.
    • hashCode

      public int hashCode()

      Returns the hash code for this instance.

      Overrides:
      hashCode in class Object
      Returns:
      A 32-bit signed integer hash code.
    • toString

      public String toString()

      Returns a human-readable string representation of this Code128ExtendedParameters.

      Overrides:
      toString in class Object
      Returns:
      A string that represents this Code128ExtendedParameters.