aspose.barcode 26.4.0 → 26.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AsposeBarcode.js +1 -1
- package/lib/ComplexBarcode.js +206 -1
- package/lib/Generation.js +410 -0
- package/lib/Joint.js +27 -1
- package/lib/Recognition.js +100 -0
- package/lib/{aspose-barcode-nodejs-26.4.jar → aspose-barcode-nodejs-26.5.jar} +0 -0
- package/package.json +1 -1
- package/examples/BarcodeGeneratorExamples.js +0 -231
- package/examples/BarcodeReaderExamples.js +0 -198
- package/examples/ExamplesAssist.js +0 -75
- package/examples/GenerateAndReadExample.js +0 -25
- package/examples/how_to.txt +0 -15
- package/examples/how_to_generate_and_read_example.js.cmd +0 -2
- package/examples/how_to_generate_barcode_examples.js.cmd +0 -2
- package/examples/how_to_read_barcode_examples.js.cmd +0 -2
- package/examples/lic/.stub +0 -1
- package/examples/package.json +0 -13
- package/examples/resources/generating/.stub +0 -1
- package/examples/resources/generating/setBarcodeType.png +0 -0
- package/examples/resources/recognition/code11.png +0 -0
- package/examples/resources/recognition/code128.jpg +0 -0
- package/examples/resources/recognition/example1.png +0 -0
- package/examples/resources/recognition/example2.jpg +0 -0
package/lib/AsposeBarcode.js
CHANGED
|
@@ -4,7 +4,7 @@ const joint_ = require('./Joint');
|
|
|
4
4
|
const complexbarcode_ = require("./ComplexBarcode");
|
|
5
5
|
const generation_ = require("./Generation");
|
|
6
6
|
const recognition_ = require("./Recognition");
|
|
7
|
-
const jar_name_ = "/aspose-barcode-nodejs-26.
|
|
7
|
+
const jar_name_ = "/aspose-barcode-nodejs-26.5.jar";
|
|
8
8
|
const jar_path_ = __dirname + jar_name_;
|
|
9
9
|
const fs = require("fs");
|
|
10
10
|
|
package/lib/ComplexBarcode.js
CHANGED
|
@@ -9,6 +9,10 @@ const {BaseJavaClass} = require("./Joint");
|
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* Interface for complex codetext used with ComplexBarcodeGenerator.
|
|
12
|
+
* @deprecated Legacy node-java bridge API.
|
|
13
|
+
*
|
|
14
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
15
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
12
16
|
*/
|
|
13
17
|
class IComplexCodetext extends joint.BaseJavaClass
|
|
14
18
|
{
|
|
@@ -69,6 +73,10 @@ class IComplexCodetext extends joint.BaseJavaClass
|
|
|
69
73
|
* swissQRCodetext.getBill().getDebtor().setCountryCode("Lux");
|
|
70
74
|
* let cg = new ComplexBarcodeGenerator(swissQRCodetext);
|
|
71
75
|
* let res = cg.generateBarCodeImage(BarcodeImageFormat.PNG);
|
|
76
|
+
* @deprecated Legacy node-java bridge API.
|
|
77
|
+
*
|
|
78
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
79
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
72
80
|
*/
|
|
73
81
|
class ComplexBarcodeGenerator extends joint.BaseJavaClass {
|
|
74
82
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexBarcodeGenerator";
|
|
@@ -127,6 +135,11 @@ class ComplexBarcodeGenerator extends joint.BaseJavaClass {
|
|
|
127
135
|
* once any of these fields is set. Before setting the fields, the address type is undetermined.<br>
|
|
128
136
|
* If fields of both types are set, the address type becomes conflicting.<br>
|
|
129
137
|
* Name and country code must always be set unless all fields are empty.<br>
|
|
138
|
+
*
|
|
139
|
+
* @deprecated Legacy node-java bridge API.
|
|
140
|
+
*
|
|
141
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
142
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
130
143
|
*/
|
|
131
144
|
class Address extends joint.BaseJavaClass {
|
|
132
145
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwAddress";
|
|
@@ -405,6 +418,10 @@ class Address extends joint.BaseJavaClass {
|
|
|
405
418
|
/**
|
|
406
419
|
* Address type
|
|
407
420
|
* @enum
|
|
421
|
+
* @deprecated Legacy node-java bridge API.
|
|
422
|
+
*
|
|
423
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
424
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
408
425
|
*/
|
|
409
426
|
AddressType =
|
|
410
427
|
{
|
|
@@ -428,6 +445,10 @@ AddressType =
|
|
|
428
445
|
|
|
429
446
|
/**
|
|
430
447
|
* Alternative payment scheme instructions
|
|
448
|
+
* @deprecated Legacy node-java bridge API.
|
|
449
|
+
*
|
|
450
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
451
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
431
452
|
*/
|
|
432
453
|
class AlternativeScheme extends joint.BaseJavaClass {
|
|
433
454
|
static get javaClassName() {
|
|
@@ -496,6 +517,11 @@ class AlternativeScheme extends joint.BaseJavaClass {
|
|
|
496
517
|
* let cr = new BarCodeReader("SwissQRCodetext.png", null, DecodeType.QR);
|
|
497
518
|
* cr.read();
|
|
498
519
|
* let result = ComplexCodetextReader.tryDecodeSwissQR(cr.getCodeText(false));
|
|
520
|
+
*
|
|
521
|
+
* @deprecated Legacy node-java bridge API.
|
|
522
|
+
*
|
|
523
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
524
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
499
525
|
*/
|
|
500
526
|
class ComplexCodetextReader {
|
|
501
527
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexCodetextReader";
|
|
@@ -640,6 +666,11 @@ class ComplexCodetextReader {
|
|
|
640
666
|
/**
|
|
641
667
|
* SwissQR bill standard version
|
|
642
668
|
* @enum
|
|
669
|
+
*
|
|
670
|
+
* @deprecated Legacy node-java bridge API.
|
|
671
|
+
*
|
|
672
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
673
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
643
674
|
*/
|
|
644
675
|
QrBillStandardVersion =
|
|
645
676
|
{
|
|
@@ -653,6 +684,11 @@ QrBillStandardVersion =
|
|
|
653
684
|
|
|
654
685
|
/**
|
|
655
686
|
* SwissQR bill data
|
|
687
|
+
*
|
|
688
|
+
* @deprecated Legacy node-java bridge API.
|
|
689
|
+
*
|
|
690
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
691
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
656
692
|
*/
|
|
657
693
|
class SwissQRBill extends joint.BaseJavaClass {
|
|
658
694
|
creditor;
|
|
@@ -924,6 +960,11 @@ class SwissQRBill extends joint.BaseJavaClass {
|
|
|
924
960
|
|
|
925
961
|
/**
|
|
926
962
|
* Class for encoding and decoding the text embedded in the SwissQR code.
|
|
963
|
+
*
|
|
964
|
+
* @deprecated Legacy node-java bridge API.
|
|
965
|
+
*
|
|
966
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
967
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
927
968
|
*/
|
|
928
969
|
class SwissQRCodetext extends IComplexCodetext {
|
|
929
970
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwSwissQRCodetext";
|
|
@@ -1000,6 +1041,11 @@ class SwissQRCodetext extends IComplexCodetext {
|
|
|
1000
1041
|
|
|
1001
1042
|
/**
|
|
1002
1043
|
* Class for encoding and decoding the text embedded in the 4-state Royal Mailmark code.
|
|
1044
|
+
*
|
|
1045
|
+
* @deprecated Legacy node-java bridge API.
|
|
1046
|
+
*
|
|
1047
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1048
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1003
1049
|
*/
|
|
1004
1050
|
class MailmarkCodetext extends IComplexCodetext
|
|
1005
1051
|
{
|
|
@@ -1160,6 +1206,11 @@ class MailmarkCodetext extends IComplexCodetext
|
|
|
1160
1206
|
|
|
1161
1207
|
/**
|
|
1162
1208
|
* Class for encoding and decoding the text embedded in the Royal Mail 2D Mailmark code.
|
|
1209
|
+
*
|
|
1210
|
+
* @deprecated Legacy node-java bridge API.
|
|
1211
|
+
*
|
|
1212
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1213
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1163
1214
|
*/
|
|
1164
1215
|
class Mailmark2DCodetext extends IComplexCodetext
|
|
1165
1216
|
{
|
|
@@ -1535,6 +1586,11 @@ class Mailmark2DCodetext extends IComplexCodetext
|
|
|
1535
1586
|
* console.log("MaxiCode mode: " + resultMaxiCodeCodetext.getMode());
|
|
1536
1587
|
* console.log("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
|
|
1537
1588
|
* }
|
|
1589
|
+
*
|
|
1590
|
+
* @deprecated Legacy node-java bridge API.
|
|
1591
|
+
*
|
|
1592
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1593
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1538
1594
|
*/
|
|
1539
1595
|
class MaxiCodeCodetext extends IComplexCodetext
|
|
1540
1596
|
{
|
|
@@ -1640,6 +1696,11 @@ class MaxiCodeCodetext extends IComplexCodetext
|
|
|
1640
1696
|
* maxiCodeCodetext.setMessage("Test message");
|
|
1641
1697
|
* let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
|
|
1642
1698
|
* complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
|
|
1699
|
+
*
|
|
1700
|
+
* @deprecated Legacy node-java bridge API.
|
|
1701
|
+
*
|
|
1702
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1703
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1643
1704
|
*/
|
|
1644
1705
|
class MaxiCodeSecondMessage extends joint.BaseJavaClass
|
|
1645
1706
|
{
|
|
@@ -1673,6 +1734,11 @@ class MaxiCodeSecondMessage extends joint.BaseJavaClass
|
|
|
1673
1734
|
* maxiCodeCodetext.setMessage("Test message");
|
|
1674
1735
|
* let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
|
|
1675
1736
|
* complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
|
|
1737
|
+
*
|
|
1738
|
+
* @deprecated Legacy node-java bridge API.
|
|
1739
|
+
*
|
|
1740
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1741
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1676
1742
|
*/
|
|
1677
1743
|
class MaxiCodeStandardCodetext extends MaxiCodeCodetext
|
|
1678
1744
|
{
|
|
@@ -1776,6 +1842,11 @@ class MaxiCodeStandardCodetext extends MaxiCodeCodetext
|
|
|
1776
1842
|
|
|
1777
1843
|
/**
|
|
1778
1844
|
* Class for encoding and decoding standart second message for MaxiCode barcode.
|
|
1845
|
+
*
|
|
1846
|
+
* @deprecated Legacy node-java bridge API.
|
|
1847
|
+
*
|
|
1848
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1849
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1779
1850
|
*/
|
|
1780
1851
|
class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage
|
|
1781
1852
|
{
|
|
@@ -1846,7 +1917,11 @@ class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage
|
|
|
1846
1917
|
/**
|
|
1847
1918
|
* Class for encoding and decoding standart second message for MaxiCode barcode.
|
|
1848
1919
|
*
|
|
1849
|
-
*
|
|
1920
|
+
*
|
|
1921
|
+
* @deprecated Legacy node-java bridge API.
|
|
1922
|
+
*
|
|
1923
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1924
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1850
1925
|
*/
|
|
1851
1926
|
class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage
|
|
1852
1927
|
{
|
|
@@ -1876,6 +1951,11 @@ class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage
|
|
|
1876
1951
|
* console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
|
|
1877
1952
|
* }
|
|
1878
1953
|
* }
|
|
1954
|
+
*
|
|
1955
|
+
* @deprecated Legacy node-java bridge API.
|
|
1956
|
+
*
|
|
1957
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
1958
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
1879
1959
|
*/
|
|
1880
1960
|
class MaxiCodeStructuredCodetext extends MaxiCodeCodetext
|
|
1881
1961
|
{
|
|
@@ -2100,6 +2180,11 @@ class MaxiCodeStructuredCodetext extends MaxiCodeCodetext
|
|
|
2100
2180
|
* }
|
|
2101
2181
|
* }
|
|
2102
2182
|
* }
|
|
2183
|
+
*
|
|
2184
|
+
* @deprecated Legacy node-java bridge API.
|
|
2185
|
+
*
|
|
2186
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2187
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2103
2188
|
*/
|
|
2104
2189
|
class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext
|
|
2105
2190
|
{
|
|
@@ -2222,6 +2307,11 @@ class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext
|
|
|
2222
2307
|
* }
|
|
2223
2308
|
* }
|
|
2224
2309
|
* }
|
|
2310
|
+
*
|
|
2311
|
+
* @deprecated Legacy node-java bridge API.
|
|
2312
|
+
*
|
|
2313
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2314
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2225
2315
|
*/
|
|
2226
2316
|
class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext
|
|
2227
2317
|
{
|
|
@@ -2266,6 +2356,11 @@ class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext
|
|
|
2266
2356
|
|
|
2267
2357
|
/**
|
|
2268
2358
|
* Class for encoding and decoding structured second message for MaxiCode barcode.
|
|
2359
|
+
*
|
|
2360
|
+
* @deprecated Legacy node-java bridge API.
|
|
2361
|
+
*
|
|
2362
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2363
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2269
2364
|
*/
|
|
2270
2365
|
class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage
|
|
2271
2366
|
{
|
|
@@ -2385,6 +2480,11 @@ class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage
|
|
|
2385
2480
|
* print("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType());
|
|
2386
2481
|
* print("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
|
|
2387
2482
|
* }
|
|
2483
|
+
*
|
|
2484
|
+
* @deprecated Legacy node-java bridge API.
|
|
2485
|
+
*
|
|
2486
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2487
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2388
2488
|
*/
|
|
2389
2489
|
class HIBCLICComplexCodetext extends IComplexCodetext
|
|
2390
2490
|
{
|
|
@@ -2467,6 +2567,11 @@ class HIBCLICComplexCodetext extends IComplexCodetext
|
|
|
2467
2567
|
* print("Lot number: " + result.getSecondaryAndAdditionalData().getLotNumber());
|
|
2468
2568
|
* print("Serial number: " + result.getSecondaryAndAdditionalData().getSerialNumber());
|
|
2469
2569
|
* print("Date of manufacture: " + result.getSecondaryAndAdditionalData().getDateOfManufacture());
|
|
2570
|
+
*
|
|
2571
|
+
* @deprecated Legacy node-java bridge API.
|
|
2572
|
+
*
|
|
2573
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2574
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2470
2575
|
*/
|
|
2471
2576
|
class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext
|
|
2472
2577
|
{
|
|
@@ -2609,6 +2714,11 @@ class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext
|
|
|
2609
2714
|
* print("Product or catalog number: " + result.getData().getProductOrCatalogNumber());
|
|
2610
2715
|
* print("Labeler identification code: " + result.getData().getLabelerIdentificationCode());
|
|
2611
2716
|
* print("Unit of measure ID: " + result.getData().getUnitOfMeasureID());
|
|
2717
|
+
*
|
|
2718
|
+
* @deprecated Legacy node-java bridge API.
|
|
2719
|
+
*
|
|
2720
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2721
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2612
2722
|
*/
|
|
2613
2723
|
class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext
|
|
2614
2724
|
{
|
|
@@ -2735,6 +2845,11 @@ class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext
|
|
|
2735
2845
|
* print("Date of manufacture: " + result.getData().getDateOfManufacture());
|
|
2736
2846
|
* </code>
|
|
2737
2847
|
* </example>
|
|
2848
|
+
*
|
|
2849
|
+
* @deprecated Legacy node-java bridge API.
|
|
2850
|
+
*
|
|
2851
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2852
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2738
2853
|
*/
|
|
2739
2854
|
class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext
|
|
2740
2855
|
{
|
|
@@ -2874,6 +2989,11 @@ class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext
|
|
|
2874
2989
|
* print("Data: " + readCodetext.getRecords()[0].getData());
|
|
2875
2990
|
* print("Data type: " + readCodetext.getRecords()[1].getDataType());
|
|
2876
2991
|
* print("Data: " + readCodetext.getRecords()[1].getData());
|
|
2992
|
+
*
|
|
2993
|
+
* @deprecated Legacy node-java bridge API.
|
|
2994
|
+
*
|
|
2995
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
2996
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
2877
2997
|
*/
|
|
2878
2998
|
class HIBCPASCodetext extends IComplexCodetext
|
|
2879
2999
|
{
|
|
@@ -3048,6 +3168,11 @@ class HIBCPASCodetext extends IComplexCodetext
|
|
|
3048
3168
|
* <p>
|
|
3049
3169
|
* Class for storing HIBC PAS record.
|
|
3050
3170
|
* </p>
|
|
3171
|
+
*
|
|
3172
|
+
* @deprecated Legacy node-java bridge API.
|
|
3173
|
+
*
|
|
3174
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3175
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3051
3176
|
*/
|
|
3052
3177
|
class HIBCPASRecord extends joint.BaseJavaClass
|
|
3053
3178
|
{
|
|
@@ -3154,6 +3279,11 @@ class HIBCPASRecord extends joint.BaseJavaClass
|
|
|
3154
3279
|
* <p>
|
|
3155
3280
|
* Class for storing HIBC LIC primary data.
|
|
3156
3281
|
* </p>
|
|
3282
|
+
*
|
|
3283
|
+
* @deprecated Legacy node-java bridge API.
|
|
3284
|
+
*
|
|
3285
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3286
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3157
3287
|
*/
|
|
3158
3288
|
class PrimaryData extends joint.BaseJavaClass
|
|
3159
3289
|
{
|
|
@@ -3292,6 +3422,11 @@ class PrimaryData extends joint.BaseJavaClass
|
|
|
3292
3422
|
* <p>
|
|
3293
3423
|
* Class for storing HIBC LIC secondary and additional data.
|
|
3294
3424
|
* </p>
|
|
3425
|
+
*
|
|
3426
|
+
* @deprecated Legacy node-java bridge API.
|
|
3427
|
+
*
|
|
3428
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3429
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3295
3430
|
*/
|
|
3296
3431
|
class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
3297
3432
|
{
|
|
@@ -3515,6 +3650,11 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3515
3650
|
/**
|
|
3516
3651
|
* 2D Mailmark Type defines size of Data Matrix barcode
|
|
3517
3652
|
* @enum
|
|
3653
|
+
*
|
|
3654
|
+
* @deprecated Legacy node-java bridge API.
|
|
3655
|
+
*
|
|
3656
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3657
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3518
3658
|
*/
|
|
3519
3659
|
Mailmark2DType =
|
|
3520
3660
|
{
|
|
@@ -3543,6 +3683,11 @@ Mailmark2DType =
|
|
|
3543
3683
|
* <p>
|
|
3544
3684
|
* Specifies the different types of date formats for HIBC LIC.
|
|
3545
3685
|
* </p>
|
|
3686
|
+
*
|
|
3687
|
+
* @deprecated Legacy node-java bridge API.
|
|
3688
|
+
*
|
|
3689
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3690
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3546
3691
|
*/
|
|
3547
3692
|
HIBCLICDateFormat =
|
|
3548
3693
|
{
|
|
@@ -3600,6 +3745,11 @@ HIBCLICDateFormat =
|
|
|
3600
3745
|
* <p>
|
|
3601
3746
|
* HIBC PAS data location types.
|
|
3602
3747
|
* </p>
|
|
3748
|
+
*
|
|
3749
|
+
* @deprecated Legacy node-java bridge API.
|
|
3750
|
+
*
|
|
3751
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3752
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3603
3753
|
*/
|
|
3604
3754
|
HIBCPASDataLocation =
|
|
3605
3755
|
{
|
|
@@ -3687,6 +3837,11 @@ HIBCPASDataLocation =
|
|
|
3687
3837
|
* <p>
|
|
3688
3838
|
* HIBC PAS record's data types.
|
|
3689
3839
|
* </p>
|
|
3840
|
+
*
|
|
3841
|
+
* @deprecated Legacy node-java bridge API.
|
|
3842
|
+
*
|
|
3843
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
3844
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3690
3845
|
*/
|
|
3691
3846
|
HIBCPASDataType =
|
|
3692
3847
|
{
|
|
@@ -3841,6 +3996,11 @@ HIBCPASDataType =
|
|
|
3841
3996
|
* <p>
|
|
3842
3997
|
* Class for Jurisdiction specific fields for USA DL
|
|
3843
3998
|
* </p>
|
|
3999
|
+
*
|
|
4000
|
+
* @deprecated Legacy node-java bridge API.
|
|
4001
|
+
*
|
|
4002
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
4003
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
3844
4004
|
*/
|
|
3845
4005
|
class USADriveIdJurisdSubfile extends BaseJavaClass
|
|
3846
4006
|
{
|
|
@@ -4000,6 +4160,11 @@ class USADriveIdJurisdSubfile extends BaseJavaClass
|
|
|
4000
4160
|
* <p>
|
|
4001
4161
|
* USA DL subfile properties, offset and length are set automatically.
|
|
4002
4162
|
* </p>
|
|
4163
|
+
*
|
|
4164
|
+
* @deprecated Legacy node-java bridge API.
|
|
4165
|
+
*
|
|
4166
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
4167
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
4003
4168
|
*/
|
|
4004
4169
|
class SubfileProperties extends BaseJavaClass
|
|
4005
4170
|
{
|
|
@@ -4100,6 +4265,11 @@ class SubfileProperties extends BaseJavaClass
|
|
|
4100
4265
|
* <p>
|
|
4101
4266
|
* Class for encoding and decoding the text embedded in the USA Driving License PDF417 code.
|
|
4102
4267
|
* </p>
|
|
4268
|
+
*
|
|
4269
|
+
* @deprecated Legacy node-java bridge API.
|
|
4270
|
+
*
|
|
4271
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
4272
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
4103
4273
|
*/
|
|
4104
4274
|
class USADriveIdCodetext extends IComplexCodetext
|
|
4105
4275
|
{
|
|
@@ -4352,6 +4522,11 @@ class USADriveIdCodetext extends IComplexCodetext
|
|
|
4352
4522
|
* <p>
|
|
4353
4523
|
* Mandatory elements (fields) of the card
|
|
4354
4524
|
* </p>
|
|
4525
|
+
*
|
|
4526
|
+
* @deprecated Legacy node-java bridge API.
|
|
4527
|
+
*
|
|
4528
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
4529
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
4355
4530
|
*/
|
|
4356
4531
|
class MandatoryFields extends BaseJavaClass
|
|
4357
4532
|
{
|
|
@@ -4786,6 +4961,11 @@ class MandatoryFields extends BaseJavaClass
|
|
|
4786
4961
|
* Represents a jurisdiction-specific data field used in documents,
|
|
4787
4962
|
* for example ElementID = "ZVA" with Value = "01".
|
|
4788
4963
|
* </p>
|
|
4964
|
+
*
|
|
4965
|
+
* @deprecated Legacy node-java bridge API.
|
|
4966
|
+
*
|
|
4967
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
4968
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
4789
4969
|
*/
|
|
4790
4970
|
class DataElement extends BaseJavaClass
|
|
4791
4971
|
{
|
|
@@ -4843,6 +5023,11 @@ class DataElement extends BaseJavaClass
|
|
|
4843
5023
|
* <p>
|
|
4844
5024
|
* Optional elements (fields) of the card
|
|
4845
5025
|
* </p>
|
|
5026
|
+
*
|
|
5027
|
+
* @deprecated Legacy node-java bridge API.
|
|
5028
|
+
*
|
|
5029
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
5030
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
4846
5031
|
*/
|
|
4847
5032
|
class OptionalFields extends BaseJavaClass
|
|
4848
5033
|
{
|
|
@@ -5392,6 +5577,11 @@ class OptionalFields extends BaseJavaClass
|
|
|
5392
5577
|
* <p>
|
|
5393
5578
|
* Enum for Eye Color in the US Driver's License
|
|
5394
5579
|
* </p>
|
|
5580
|
+
*
|
|
5581
|
+
* @deprecated Legacy node-java bridge API.
|
|
5582
|
+
*
|
|
5583
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
5584
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
5395
5585
|
*/
|
|
5396
5586
|
USADriveIdEyeColor =
|
|
5397
5587
|
{
|
|
@@ -5468,6 +5658,11 @@ USADriveIdEyeColor =
|
|
|
5468
5658
|
* <p>
|
|
5469
5659
|
* Enum for Country Identification in the US Driver's License
|
|
5470
5660
|
* </p>
|
|
5661
|
+
*
|
|
5662
|
+
* @deprecated Legacy node-java bridge API.
|
|
5663
|
+
*
|
|
5664
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
5665
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
5471
5666
|
*/
|
|
5472
5667
|
USADriveIdCountry =
|
|
5473
5668
|
{
|
|
@@ -5496,6 +5691,11 @@ USADriveIdCountry =
|
|
|
5496
5691
|
* <p>
|
|
5497
5692
|
* Enum for Hair Color in the US Driver's License
|
|
5498
5693
|
* </p>
|
|
5694
|
+
*
|
|
5695
|
+
* @deprecated Legacy node-java bridge API.
|
|
5696
|
+
*
|
|
5697
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
5698
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
5499
5699
|
*/
|
|
5500
5700
|
USADriveIdHairColor =
|
|
5501
5701
|
{
|
|
@@ -5565,6 +5765,11 @@ USADriveIdHairColor =
|
|
|
5565
5765
|
* <p>
|
|
5566
5766
|
* Enum for Sex field in the US Driver's License
|
|
5567
5767
|
* </p>
|
|
5768
|
+
*
|
|
5769
|
+
* @deprecated Legacy node-java bridge API.
|
|
5770
|
+
*
|
|
5771
|
+
* This API is deprecated and scheduled for removal in version 26.7.
|
|
5772
|
+
* A java-bridge based replacement is planned, but is not available yet.
|
|
5568
5773
|
*/
|
|
5569
5774
|
USADriveIdSex =
|
|
5570
5775
|
{
|