aspose.barcode 26.3.1 → 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
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
|
@@ -6,11 +6,13 @@ const joint = require('./Joint');
|
|
|
6
6
|
const java = require('java');
|
|
7
7
|
const aspose_barcode = require("./AsposeBarcode");
|
|
8
8
|
const {BaseJavaClass} = require("./Joint");
|
|
9
|
-
const {Base} = require("mocha/lib/reporters");
|
|
10
|
-
|
|
11
9
|
|
|
12
10
|
/**
|
|
13
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.
|
|
14
16
|
*/
|
|
15
17
|
class IComplexCodetext extends joint.BaseJavaClass
|
|
16
18
|
{
|
|
@@ -71,6 +73,10 @@ class IComplexCodetext extends joint.BaseJavaClass
|
|
|
71
73
|
* swissQRCodetext.getBill().getDebtor().setCountryCode("Lux");
|
|
72
74
|
* let cg = new ComplexBarcodeGenerator(swissQRCodetext);
|
|
73
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.
|
|
74
80
|
*/
|
|
75
81
|
class ComplexBarcodeGenerator extends joint.BaseJavaClass {
|
|
76
82
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexBarcodeGenerator";
|
|
@@ -129,6 +135,11 @@ class ComplexBarcodeGenerator extends joint.BaseJavaClass {
|
|
|
129
135
|
* once any of these fields is set. Before setting the fields, the address type is undetermined.<br>
|
|
130
136
|
* If fields of both types are set, the address type becomes conflicting.<br>
|
|
131
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.
|
|
132
143
|
*/
|
|
133
144
|
class Address extends joint.BaseJavaClass {
|
|
134
145
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwAddress";
|
|
@@ -407,6 +418,10 @@ class Address extends joint.BaseJavaClass {
|
|
|
407
418
|
/**
|
|
408
419
|
* Address type
|
|
409
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.
|
|
410
425
|
*/
|
|
411
426
|
AddressType =
|
|
412
427
|
{
|
|
@@ -430,6 +445,10 @@ AddressType =
|
|
|
430
445
|
|
|
431
446
|
/**
|
|
432
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.
|
|
433
452
|
*/
|
|
434
453
|
class AlternativeScheme extends joint.BaseJavaClass {
|
|
435
454
|
static get javaClassName() {
|
|
@@ -498,6 +517,11 @@ class AlternativeScheme extends joint.BaseJavaClass {
|
|
|
498
517
|
* let cr = new BarCodeReader("SwissQRCodetext.png", null, DecodeType.QR);
|
|
499
518
|
* cr.read();
|
|
500
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.
|
|
501
525
|
*/
|
|
502
526
|
class ComplexCodetextReader {
|
|
503
527
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexCodetextReader";
|
|
@@ -642,6 +666,11 @@ class ComplexCodetextReader {
|
|
|
642
666
|
/**
|
|
643
667
|
* SwissQR bill standard version
|
|
644
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.
|
|
645
674
|
*/
|
|
646
675
|
QrBillStandardVersion =
|
|
647
676
|
{
|
|
@@ -655,6 +684,11 @@ QrBillStandardVersion =
|
|
|
655
684
|
|
|
656
685
|
/**
|
|
657
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.
|
|
658
692
|
*/
|
|
659
693
|
class SwissQRBill extends joint.BaseJavaClass {
|
|
660
694
|
creditor;
|
|
@@ -926,6 +960,11 @@ class SwissQRBill extends joint.BaseJavaClass {
|
|
|
926
960
|
|
|
927
961
|
/**
|
|
928
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.
|
|
929
968
|
*/
|
|
930
969
|
class SwissQRCodetext extends IComplexCodetext {
|
|
931
970
|
static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwSwissQRCodetext";
|
|
@@ -1002,6 +1041,11 @@ class SwissQRCodetext extends IComplexCodetext {
|
|
|
1002
1041
|
|
|
1003
1042
|
/**
|
|
1004
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.
|
|
1005
1049
|
*/
|
|
1006
1050
|
class MailmarkCodetext extends IComplexCodetext
|
|
1007
1051
|
{
|
|
@@ -1162,6 +1206,11 @@ class MailmarkCodetext extends IComplexCodetext
|
|
|
1162
1206
|
|
|
1163
1207
|
/**
|
|
1164
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.
|
|
1165
1214
|
*/
|
|
1166
1215
|
class Mailmark2DCodetext extends IComplexCodetext
|
|
1167
1216
|
{
|
|
@@ -1537,6 +1586,11 @@ class Mailmark2DCodetext extends IComplexCodetext
|
|
|
1537
1586
|
* console.log("MaxiCode mode: " + resultMaxiCodeCodetext.getMode());
|
|
1538
1587
|
* console.log("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
|
|
1539
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.
|
|
1540
1594
|
*/
|
|
1541
1595
|
class MaxiCodeCodetext extends IComplexCodetext
|
|
1542
1596
|
{
|
|
@@ -1642,6 +1696,11 @@ class MaxiCodeCodetext extends IComplexCodetext
|
|
|
1642
1696
|
* maxiCodeCodetext.setMessage("Test message");
|
|
1643
1697
|
* let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
|
|
1644
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.
|
|
1645
1704
|
*/
|
|
1646
1705
|
class MaxiCodeSecondMessage extends joint.BaseJavaClass
|
|
1647
1706
|
{
|
|
@@ -1675,6 +1734,11 @@ class MaxiCodeSecondMessage extends joint.BaseJavaClass
|
|
|
1675
1734
|
* maxiCodeCodetext.setMessage("Test message");
|
|
1676
1735
|
* let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
|
|
1677
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.
|
|
1678
1742
|
*/
|
|
1679
1743
|
class MaxiCodeStandardCodetext extends MaxiCodeCodetext
|
|
1680
1744
|
{
|
|
@@ -1778,6 +1842,11 @@ class MaxiCodeStandardCodetext extends MaxiCodeCodetext
|
|
|
1778
1842
|
|
|
1779
1843
|
/**
|
|
1780
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.
|
|
1781
1850
|
*/
|
|
1782
1851
|
class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage
|
|
1783
1852
|
{
|
|
@@ -1848,7 +1917,11 @@ class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage
|
|
|
1848
1917
|
/**
|
|
1849
1918
|
* Class for encoding and decoding standart second message for MaxiCode barcode.
|
|
1850
1919
|
*
|
|
1851
|
-
*
|
|
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.
|
|
1852
1925
|
*/
|
|
1853
1926
|
class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage
|
|
1854
1927
|
{
|
|
@@ -1878,6 +1951,11 @@ class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage
|
|
|
1878
1951
|
* console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
|
|
1879
1952
|
* }
|
|
1880
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.
|
|
1881
1959
|
*/
|
|
1882
1960
|
class MaxiCodeStructuredCodetext extends MaxiCodeCodetext
|
|
1883
1961
|
{
|
|
@@ -2102,6 +2180,11 @@ class MaxiCodeStructuredCodetext extends MaxiCodeCodetext
|
|
|
2102
2180
|
* }
|
|
2103
2181
|
* }
|
|
2104
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.
|
|
2105
2188
|
*/
|
|
2106
2189
|
class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext
|
|
2107
2190
|
{
|
|
@@ -2224,6 +2307,11 @@ class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext
|
|
|
2224
2307
|
* }
|
|
2225
2308
|
* }
|
|
2226
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.
|
|
2227
2315
|
*/
|
|
2228
2316
|
class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext
|
|
2229
2317
|
{
|
|
@@ -2268,6 +2356,11 @@ class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext
|
|
|
2268
2356
|
|
|
2269
2357
|
/**
|
|
2270
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.
|
|
2271
2364
|
*/
|
|
2272
2365
|
class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage
|
|
2273
2366
|
{
|
|
@@ -2387,6 +2480,11 @@ class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage
|
|
|
2387
2480
|
* print("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType());
|
|
2388
2481
|
* print("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
|
|
2389
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.
|
|
2390
2488
|
*/
|
|
2391
2489
|
class HIBCLICComplexCodetext extends IComplexCodetext
|
|
2392
2490
|
{
|
|
@@ -2469,6 +2567,11 @@ class HIBCLICComplexCodetext extends IComplexCodetext
|
|
|
2469
2567
|
* print("Lot number: " + result.getSecondaryAndAdditionalData().getLotNumber());
|
|
2470
2568
|
* print("Serial number: " + result.getSecondaryAndAdditionalData().getSerialNumber());
|
|
2471
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.
|
|
2472
2575
|
*/
|
|
2473
2576
|
class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext
|
|
2474
2577
|
{
|
|
@@ -2611,6 +2714,11 @@ class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext
|
|
|
2611
2714
|
* print("Product or catalog number: " + result.getData().getProductOrCatalogNumber());
|
|
2612
2715
|
* print("Labeler identification code: " + result.getData().getLabelerIdentificationCode());
|
|
2613
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.
|
|
2614
2722
|
*/
|
|
2615
2723
|
class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext
|
|
2616
2724
|
{
|
|
@@ -2737,6 +2845,11 @@ class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext
|
|
|
2737
2845
|
* print("Date of manufacture: " + result.getData().getDateOfManufacture());
|
|
2738
2846
|
* </code>
|
|
2739
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.
|
|
2740
2853
|
*/
|
|
2741
2854
|
class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext
|
|
2742
2855
|
{
|
|
@@ -2876,6 +2989,11 @@ class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext
|
|
|
2876
2989
|
* print("Data: " + readCodetext.getRecords()[0].getData());
|
|
2877
2990
|
* print("Data type: " + readCodetext.getRecords()[1].getDataType());
|
|
2878
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.
|
|
2879
2997
|
*/
|
|
2880
2998
|
class HIBCPASCodetext extends IComplexCodetext
|
|
2881
2999
|
{
|
|
@@ -3050,6 +3168,11 @@ class HIBCPASCodetext extends IComplexCodetext
|
|
|
3050
3168
|
* <p>
|
|
3051
3169
|
* Class for storing HIBC PAS record.
|
|
3052
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.
|
|
3053
3176
|
*/
|
|
3054
3177
|
class HIBCPASRecord extends joint.BaseJavaClass
|
|
3055
3178
|
{
|
|
@@ -3156,6 +3279,11 @@ class HIBCPASRecord extends joint.BaseJavaClass
|
|
|
3156
3279
|
* <p>
|
|
3157
3280
|
* Class for storing HIBC LIC primary data.
|
|
3158
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.
|
|
3159
3287
|
*/
|
|
3160
3288
|
class PrimaryData extends joint.BaseJavaClass
|
|
3161
3289
|
{
|
|
@@ -3294,6 +3422,11 @@ class PrimaryData extends joint.BaseJavaClass
|
|
|
3294
3422
|
* <p>
|
|
3295
3423
|
* Class for storing HIBC LIC secondary and additional data.
|
|
3296
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.
|
|
3297
3430
|
*/
|
|
3298
3431
|
class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
3299
3432
|
{
|
|
@@ -3340,7 +3473,11 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3340
3473
|
*/
|
|
3341
3474
|
getExpiryDate()
|
|
3342
3475
|
{
|
|
3343
|
-
|
|
3476
|
+
const value = this.getJavaClass().getExpiryDateSync();
|
|
3477
|
+
|
|
3478
|
+
if (!value) return null;
|
|
3479
|
+
|
|
3480
|
+
return new Date(value);
|
|
3344
3481
|
}
|
|
3345
3482
|
/**
|
|
3346
3483
|
* <p>
|
|
@@ -3349,7 +3486,12 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3349
3486
|
*/
|
|
3350
3487
|
setExpiryDate(value)
|
|
3351
3488
|
{
|
|
3352
|
-
|
|
3489
|
+
if (!value) {
|
|
3490
|
+
this.getJavaClass().setExpiryDateSync(null);
|
|
3491
|
+
return;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
this.getJavaClass().setExpiryDateSync(value.toISOString());
|
|
3353
3495
|
}
|
|
3354
3496
|
|
|
3355
3497
|
/**
|
|
@@ -3405,7 +3547,11 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3405
3547
|
*/
|
|
3406
3548
|
getDateOfManufacture()
|
|
3407
3549
|
{
|
|
3408
|
-
|
|
3550
|
+
const value = this.getJavaClass().getDateOfManufactureSync();
|
|
3551
|
+
|
|
3552
|
+
if (!value) return null;
|
|
3553
|
+
|
|
3554
|
+
return new Date(value);
|
|
3409
3555
|
}
|
|
3410
3556
|
|
|
3411
3557
|
/**
|
|
@@ -3417,7 +3563,13 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3417
3563
|
*/
|
|
3418
3564
|
setDateOfManufacture(value)
|
|
3419
3565
|
{
|
|
3420
|
-
|
|
3566
|
+
if (!value)
|
|
3567
|
+
{
|
|
3568
|
+
this.getJavaClass().setDateOfManufactureSync(null);
|
|
3569
|
+
return;
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
this.getJavaClass().setDateOfManufactureSync(value.toISOString());
|
|
3421
3573
|
}
|
|
3422
3574
|
|
|
3423
3575
|
/**
|
|
@@ -3498,6 +3650,11 @@ class SecondaryAndAdditionalData extends joint.BaseJavaClass
|
|
|
3498
3650
|
/**
|
|
3499
3651
|
* 2D Mailmark Type defines size of Data Matrix barcode
|
|
3500
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.
|
|
3501
3658
|
*/
|
|
3502
3659
|
Mailmark2DType =
|
|
3503
3660
|
{
|
|
@@ -3526,6 +3683,11 @@ Mailmark2DType =
|
|
|
3526
3683
|
* <p>
|
|
3527
3684
|
* Specifies the different types of date formats for HIBC LIC.
|
|
3528
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.
|
|
3529
3691
|
*/
|
|
3530
3692
|
HIBCLICDateFormat =
|
|
3531
3693
|
{
|
|
@@ -3583,6 +3745,11 @@ HIBCLICDateFormat =
|
|
|
3583
3745
|
* <p>
|
|
3584
3746
|
* HIBC PAS data location types.
|
|
3585
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.
|
|
3586
3753
|
*/
|
|
3587
3754
|
HIBCPASDataLocation =
|
|
3588
3755
|
{
|
|
@@ -3670,6 +3837,11 @@ HIBCPASDataLocation =
|
|
|
3670
3837
|
* <p>
|
|
3671
3838
|
* HIBC PAS record's data types.
|
|
3672
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.
|
|
3673
3845
|
*/
|
|
3674
3846
|
HIBCPASDataType =
|
|
3675
3847
|
{
|
|
@@ -3824,6 +3996,11 @@ HIBCPASDataType =
|
|
|
3824
3996
|
* <p>
|
|
3825
3997
|
* Class for Jurisdiction specific fields for USA DL
|
|
3826
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.
|
|
3827
4004
|
*/
|
|
3828
4005
|
class USADriveIdJurisdSubfile extends BaseJavaClass
|
|
3829
4006
|
{
|
|
@@ -3983,6 +4160,11 @@ class USADriveIdJurisdSubfile extends BaseJavaClass
|
|
|
3983
4160
|
* <p>
|
|
3984
4161
|
* USA DL subfile properties, offset and length are set automatically.
|
|
3985
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.
|
|
3986
4168
|
*/
|
|
3987
4169
|
class SubfileProperties extends BaseJavaClass
|
|
3988
4170
|
{
|
|
@@ -4083,6 +4265,11 @@ class SubfileProperties extends BaseJavaClass
|
|
|
4083
4265
|
* <p>
|
|
4084
4266
|
* Class for encoding and decoding the text embedded in the USA Driving License PDF417 code.
|
|
4085
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.
|
|
4086
4273
|
*/
|
|
4087
4274
|
class USADriveIdCodetext extends IComplexCodetext
|
|
4088
4275
|
{
|
|
@@ -4335,6 +4522,11 @@ class USADriveIdCodetext extends IComplexCodetext
|
|
|
4335
4522
|
* <p>
|
|
4336
4523
|
* Mandatory elements (fields) of the card
|
|
4337
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.
|
|
4338
4530
|
*/
|
|
4339
4531
|
class MandatoryFields extends BaseJavaClass
|
|
4340
4532
|
{
|
|
@@ -4769,6 +4961,11 @@ class MandatoryFields extends BaseJavaClass
|
|
|
4769
4961
|
* Represents a jurisdiction-specific data field used in documents,
|
|
4770
4962
|
* for example ElementID = "ZVA" with Value = "01".
|
|
4771
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.
|
|
4772
4969
|
*/
|
|
4773
4970
|
class DataElement extends BaseJavaClass
|
|
4774
4971
|
{
|
|
@@ -4826,6 +5023,11 @@ class DataElement extends BaseJavaClass
|
|
|
4826
5023
|
* <p>
|
|
4827
5024
|
* Optional elements (fields) of the card
|
|
4828
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.
|
|
4829
5031
|
*/
|
|
4830
5032
|
class OptionalFields extends BaseJavaClass
|
|
4831
5033
|
{
|
|
@@ -5375,6 +5577,11 @@ class OptionalFields extends BaseJavaClass
|
|
|
5375
5577
|
* <p>
|
|
5376
5578
|
* Enum for Eye Color in the US Driver's License
|
|
5377
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.
|
|
5378
5585
|
*/
|
|
5379
5586
|
USADriveIdEyeColor =
|
|
5380
5587
|
{
|
|
@@ -5451,6 +5658,11 @@ USADriveIdEyeColor =
|
|
|
5451
5658
|
* <p>
|
|
5452
5659
|
* Enum for Country Identification in the US Driver's License
|
|
5453
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.
|
|
5454
5666
|
*/
|
|
5455
5667
|
USADriveIdCountry =
|
|
5456
5668
|
{
|
|
@@ -5479,6 +5691,11 @@ USADriveIdCountry =
|
|
|
5479
5691
|
* <p>
|
|
5480
5692
|
* Enum for Hair Color in the US Driver's License
|
|
5481
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.
|
|
5482
5699
|
*/
|
|
5483
5700
|
USADriveIdHairColor =
|
|
5484
5701
|
{
|
|
@@ -5548,6 +5765,11 @@ USADriveIdHairColor =
|
|
|
5548
5765
|
* <p>
|
|
5549
5766
|
* Enum for Sex field in the US Driver's License
|
|
5550
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.
|
|
5551
5773
|
*/
|
|
5552
5774
|
USADriveIdSex =
|
|
5553
5775
|
{
|