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("c:\\test.png"); BarCodeReader reader = new BarCodeReader("c:\\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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Returns a value indicating whether this instance is equal to a specifiedCode128ExtendedParameters
value.Code128DataPortion[]
getCode128DataPortions()
GetsCode128DataPortion
array of recognized Code128 barcodeint
hashCode()
Returns the hash code for this instance.java.lang.String
toString()
Returns a human-readable string representation of thisCode128ExtendedParameters
.-
Methods inherited from class com.aspose.barcode.barcoderecognition.BaseExtendedParameters
isEmpty
-
-
-
-
Method Detail
-
getCode128DataPortions
public Code128DataPortion[] getCode128DataPortions()
Gets
Value: Array of theCode128DataPortion
array of recognized Code128 barcodeCode128DataPortion
.
-
equals
public boolean equals(java.lang.Object obj)
Returns a value indicating whether this instance is equal to a specified
Code128ExtendedParameters
value.- Overrides:
equals
in classjava.lang.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 classjava.lang.Object
- Returns:
- A 32-bit signed integer hash code.
-
toString
public java.lang.String toString()
Returns a human-readable string representation of this
Code128ExtendedParameters
.- Overrides:
toString
in classjava.lang.Object
- Returns:
- A string that represents this
Code128ExtendedParameters
.
-
-