Class MultyDecodeType
java.lang.Object
com.aspose.barcode.barcoderecognition.BaseDecodeType
com.aspose.barcode.barcoderecognition.MultiDecodeType
com.aspose.barcode.barcoderecognition.MultyDecodeType
@Deprecated
public class MultyDecodeType
extends com.aspose.barcode.barcoderecognition.MultiDecodeType
Deprecated.
Composite decode type.
CreateThis sample shows how to create compound MultyDecode types that combine SingleDecodeType and MultiDecode types.MultyDecodeType types1 = new MultyDecodeType(DecodeType.QR, DecodeType.DATA_MATRIX); MultyDecodeType types2 = new MultyDecodeType(types1, DecodeType.CODE_128, DecodeType.CODE_39);
-
Constructor Summary
ConstructorsConstructorDescriptionMultyDecodeType(BaseDecodeType... barcodeTypes) Deprecated.Initializes a new instance of theMultyDecodeTypeclass.MultyDecodeType(SingleDecodeType... barcodeTypes) Deprecated.Initializes a new instance of theMultyDecodeTypeclass. -
Method Summary
Methods inherited from class com.aspose.barcode.barcoderecognition.MultiDecodeType
add, containsAll, containsAny, equals, equals, equals, exclude, getSingleTypes, getSingleTypesCount, hashCode, toStringMethods inherited from class com.aspose.barcode.barcoderecognition.BaseDecodeType
tryParseBaseDecodeType, tryParseMultiDecodeType, tryParseSingleDecodeType
-
Constructor Details
-
MultyDecodeType
Deprecated.Initializes a new instance of the
MultyDecodeTypeclass.- Parameters:
barcodeTypes- Array of single decode types
-
MultyDecodeType
Deprecated.Initializes a new instance of the
MultyDecodeTypeclass.- Parameters:
barcodeTypes- Array of multi and single decode types
-