Skip to content

Commit 495ea4a

Browse files
Aleksander GrininAleksander Grinin
authored andcommitted
Javadoc API for Aspose.Barcode for Android via Java release 26.2 is added
1 parent 28016f2 commit 495ea4a

79 files changed

Lines changed: 3004 additions & 1078 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

english/androidjava/com.aspose.barcode.barcoderecognition/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This package contains tools for 1D/2D barcode recognition.
2727
| [BarcodeSettings](../com.aspose.barcode.barcoderecognition/barcodesettings) | The main BarCode decoding parameters. |
2828
| [BarcodeSettingsInternal](../com.aspose.barcode.barcoderecognition/barcodesettingsinternal) | |
2929
| [BarcodeSvmDetectorSettings](../com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings) | Barcode detector settings. |
30-
| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultyDecodeType and SingleDecodeType. |
30+
| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultiDecodeType and SingleDecodeType. |
3131
| [BaseExtendedParameters](../com.aspose.barcode.barcoderecognition/baseextendedparameters) | Basic class for extended parameters of recognized barcode storing |
3232
| [CodabarExtendedParameters](../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Stores a Codabar additional information of recognized barcode |
3333
| [Code128DataPortion](../com.aspose.barcode.barcoderecognition/code128dataportion) | Contains the data of subtype for Code128 type barcode |
@@ -41,6 +41,7 @@ This package contains tools for 1D/2D barcode recognition.
4141
| [GS1CompositeBarExtendedParameters](../com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters) | Stores special data of **GS1 Composite Bar** recognized barcode |
4242
| [ImageScalingModeInternal](../com.aspose.barcode.barcoderecognition/imagescalingmodeinternal) | |
4343
| [MaxiCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Stores a MaxiCode additional information of recognized barcode |
44+
| [MultiDecodeType](../com.aspose.barcode.barcoderecognition/multidecodetype) | Composite decode type. |
4445
| [MultyDecodeType](../com.aspose.barcode.barcoderecognition/multydecodetype) | Composite decode type. |
4546
| [OneDExtendedParameters](../com.aspose.barcode.barcoderecognition/onedextendedparameters) | Stores special data of 1D recognized barcode like separate codetext and checksum |
4647
| [Pdf417ExtendedParameters](../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) | Stores a MacroPdf417 metadata information of recognized barcode |

english/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: AustraliaPostCustomerInformationDecoder
33
second_title: Aspose.BarCode for Android via Java API Reference
44
description: Public interface for Customer Information Field decoding which is used in AustraliaPost symbology.
55
type: docs
6-
weight: 49
6+
weight: 50
77
url: /androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/
88
---```
99
public interface AustraliaPostCustomerInformationDecoder

english/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: BarcodeQualityMode
33
second_title: Aspose.BarCode for Android via Java API Reference
44
description:
55
type: docs
6-
weight: 50
6+
weight: 51
77
url: /androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/
88
---
99
**Inheritance:**

english/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ BarCodeReader encapsulates an image which may contain one or several barcodes, i
5656
| [equals(Object arg0)](#equals-java.lang.Object-) | |
5757
| [exportToXml(OutputStream xmlStream)](#exportToXml-java.io.OutputStream-) | Exports BarCode properties to the xml-stream specified |
5858
| [exportToXml(String xmlFile)](#exportToXml-java.lang.String-) | Exports BarCode properties to the xml-file specified |
59-
| [getBarCodeDecodeType()](#getBarCodeDecodeType--) | Gets the decode type of the input barcode decoding |
59+
| [getBarCodeReadType()](#getBarCodeReadType--) | Gets the decode type of the input barcode decoding |
6060
| [getBarcodeSettings()](#getBarcodeSettings--) | The main BarCode decoding parameters. |
6161
| [getClass()](#getClass--) | |
6262
| [getFoundBarCodes()](#getFoundBarCodes--) | Gets recognized BarCodeResult s array |
@@ -176,7 +176,7 @@ Initializes a new instance of the BarCodeReader class.
176176
> This sample shows how to detect Code39 and Code128 barcodes.
177177
>
178178
> Bitmap bmp = BitmapFactory.decodeFile("test.png");
179-
> BarCodeReader reader = new BarCodeReader(bmp, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
179+
> BarCodeReader reader = new BarCodeReader(bmp, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
180180
> for(BarCodeResult result : reader.readBarCodes())
181181
> {
182182
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -233,7 +233,7 @@ Initializes a new instance of the BarCodeReader class.
233233
> This sample shows how to detect Code39 and Code128 barcodes.
234234
>
235235
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
236-
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
236+
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
237237
> for(BarCodeResult result : reader.readBarCodes())
238238
> {
239239
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -262,7 +262,7 @@ Initializes a new instance of the BarCodeReader class.
262262
> This sample shows how to detect Code39 and Code128 barcodes.
263263
>
264264
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
265-
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
265+
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
266266
> for(BarCodeResult result : reader.readBarCodes())
267267
> {
268268
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -291,7 +291,7 @@ Initializes a new instance of the BarCodeReader class.
291291
> This sample shows how to detect Code39 and Code128 barcodes.
292292
>
293293
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
294-
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
294+
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
295295
> for(BarCodeResult result : reader.readBarCodes())
296296
> {
297297
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -320,7 +320,7 @@ Initializes a new instance of the BarCodeReader class.
320320
> This sample shows how to detect Code39 and Code128 barcodes.
321321
>
322322
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
323-
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
323+
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
324324
> for(BarCodeResult result : reader.readBarCodes())
325325
> {
326326
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -349,7 +349,7 @@ Initializes a new instance of the BarCodeReader class.
349349
> This sample shows how to detect Code39 and Code128 barcodes.
350350
>
351351
> Bitmap bmp = BitmapFactory.decodeFile("test.png");
352-
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
352+
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
353353
> for(BarCodeResult result : reader.readBarCodes())
354354
> {
355355
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -417,7 +417,7 @@ Initializes a new instance of the BarCodeReader class.
417417
> ```
418418
> This sample shows how to detect Code39 and Code128 barcodes.
419419
>
420-
> BarCodeReader reader = new BarCodeReader("test.png", new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
420+
> BarCodeReader reader = new BarCodeReader("test.png", new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
421421
> for(BarCodeResult result : reader.readBarCodes())
422422
> {
423423
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -500,7 +500,7 @@ Initializes a new instance of the BarCodeReader class.
500500
> This sample shows how to detect Code39 and Code128 barcodes.
501501
>
502502
> InputStream fstr = new FileInputStream("test.png");
503-
> BarCodeReader reader = new BarCodeReader(fstr, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
503+
> BarCodeReader reader = new BarCodeReader(fstr, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
504504
> for(BarCodeResult result : reader.readBarCodes())
505505
> {
506506
> System.out.println("BarCode Type: " + result.getCodeTypeName());
@@ -617,9 +617,9 @@ Exports BarCode properties to the xml-file specified
617617
boolean - Whether or not export completed successfully.
618618
619619
Returns **True** in case of success; **False** Otherwise
620-
### getBarCodeDecodeType() {#getBarCodeDecodeType--}
620+
### getBarCodeReadType() {#getBarCodeReadType--}
621621
```
622-
public BaseDecodeType getBarCodeDecodeType()
622+
public BaseDecodeType getBarCodeReadType()
623623
```
624624
625625
@@ -1019,14 +1019,15 @@ Sets decode type for recognition. Must be called before ReadBarCodes() method.
10191019
> ```
10201020
> This sample shows how to detect Code39 and Code128 barcodes.
10211021
>
1022-
> BarCodeReader reader = new BarCodeReader())
1023-
> reader.setBarCodeReadType(new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
1022+
> BarCodeReader reader = new BarCodeReader();
1023+
> reader.setBarCodeReadType(new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
10241024
> reader.setBarCodeImage("test.png");
10251025
> for(BarCodeResult result : reader.readBarCodes())
10261026
> {
10271027
> System.out.println("BarCode Type: " + result.getCodeTypeName());
10281028
> System.out.println("BarCode CodeText: " + result.getCodeText());
10291029
> }
1030+
> System.out.println("BarCodeReadType: " + reader.getBarCodeReadType().toString());
10301031
> ```
10311032
10321033
**Parameters:**

english/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: BaseDecodeType
33
second_title: Aspose.BarCode for Android via Java API Reference
4-
description: Base class for MultyDecodeType and SingleDecodeType.
4+
description: Base class for MultiDecodeType and SingleDecodeType.
55
type: docs
66
weight: 23
77
url: /androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/
@@ -12,22 +12,22 @@ java.lang.Object
1212
public abstract class BaseDecodeType
1313
```
1414

15-
Base class for MultyDecodeType and SingleDecodeType.
15+
Base class for MultiDecodeType and SingleDecodeType.
1616

1717
--------------------
1818

1919
> ```
20-
> This sample shows how to use BaseDecodeType with SingleDecodeType and MultyDecodeType
20+
> This sample shows how to use BaseDecodeType with SingleDecodeType and MultiDecodeType
2121
>
2222
> BaseDecodeType decodeOne = DecodeType.CODE_128;
23-
> BaseDecodeType decodeTwo = new MultyDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII);
23+
> BaseDecodeType decodeTwo = new MultiDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII);
2424
> ```
2525
## Methods
2626
2727
| Method | Description |
2828
| --- | --- |
2929
| [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Determines whether any of the given decode types is included into |
30-
| [equals(MultyDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
30+
| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
3131
| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
3232
| [equals(Object other)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
3333
| [getClass()](#getClass--) | |
@@ -36,7 +36,7 @@ Base class for MultyDecodeType and SingleDecodeType.
3636
| [notifyAll()](#notifyAll--) | |
3737
| [toString()](#toString--) | |
3838
| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. |
39-
| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. |
39+
| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. |
4040
| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. |
4141
| [wait()](#wait--) | |
4242
| [wait(long arg0)](#wait-long-) | |
@@ -56,9 +56,9 @@ Determines whether any of the given decode types is included into
5656
5757
**Returns:**
5858
boolean - Value is a true if any types are included into.
59-
### equals(MultyDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-}
59+
### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-}
6060
```
61-
public boolean equals(MultyDecodeType other)
61+
public boolean equals(MultiDecodeType other)
6262
```
6363
6464
@@ -67,7 +67,7 @@ Returns a value indicating whether this instance is equal to a specified [BaseDe
6767
**Parameters:**
6868
| Parameter | Type | Description |
6969
| --- | --- | --- |
70-
| other | [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) | An java.lang.Object value to compare to this instance. |
70+
| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | An java.lang.Object value to compare to this instance. |
7171
7272
**Returns:**
7373
boolean - True if obj has the same value as this instance; otherwise, false.
@@ -158,29 +158,29 @@ Converts the string representation of a BaseDecodeType to its instance, having d
158158
**Parameters:**
159159
| Parameter | Type | Description |
160160
| --- | --- | --- |
161-
| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. |
161+
| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. |
162162
163163
**Returns:**
164-
[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully;
164+
[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully;
165165
166-
otherwise it returns indefinite type. or MultyDecodeType ("None").
167-
### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-}
166+
otherwise it returns indefinite type. or MultiDecodeType ("None").
167+
### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-}
168168
```
169-
public static MultyDecodeType tryParseMultyDecodeType(String parsingType)
169+
public static MultiDecodeType tryParseMultiDecodeType(String parsingType)
170170
```
171171
172172
173-
Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
173+
Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
174174
175175
**Parameters:**
176176
| Parameter | Type | Description |
177177
| --- | --- | --- |
178-
| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. |
178+
| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. |
179179
180180
**Returns:**
181-
[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully;
181+
com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully;
182182
183-
otherwise it returns indefinite type. or MultyDecodeType ("None").
183+
otherwise it returns indefinite type. or MultiDecodeType ("None").
184184
### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-}
185185
```
186186
public static SingleDecodeType tryParseSingleDecodeType(String parsingType)

english/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ChecksumValidation
33
second_title: Aspose.BarCode for Android via Java API Reference
44
description:
55
type: docs
6-
weight: 51
6+
weight: 52
77
url: /androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/
88
---
99
**Inheritance:**

0 commit comments

Comments
 (0)