aspose.barcode 25.11.0 → 26.1.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/Generation.js
CHANGED
|
@@ -1656,8 +1656,30 @@ class PostalParameters extends joint.BaseJavaClass
|
|
|
1656
1656
|
this.postalShortBarHeight = new Unit(this.getJavaClass().getPostalShortBarHeightSync());
|
|
1657
1657
|
}
|
|
1658
1658
|
|
|
1659
|
+
/**
|
|
1660
|
+
* <p>
|
|
1661
|
+
* Short bar's height of Postal barcodes.
|
|
1662
|
+
* </p>
|
|
1663
|
+
*/
|
|
1664
|
+
getShortBarHeight()
|
|
1665
|
+
{
|
|
1666
|
+
return this.postalShortBarHeight;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
/**
|
|
1670
|
+
* <p>
|
|
1671
|
+
* Short bar's height of Postal barcodes.
|
|
1672
|
+
* </p>
|
|
1673
|
+
*/
|
|
1674
|
+
setShortBarHeight(value)
|
|
1675
|
+
{
|
|
1676
|
+
this.postalShortBarHeight = value;
|
|
1677
|
+
this.getJavaClass().setPostalShortBarHeightSync(value.getNativeObject());
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1659
1680
|
/**
|
|
1660
1681
|
* Short bar's height of Postal barcodes.
|
|
1682
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getShortBarHeight().
|
|
1661
1683
|
*/
|
|
1662
1684
|
getPostalShortBarHeight()
|
|
1663
1685
|
{
|
|
@@ -1666,6 +1688,7 @@ class PostalParameters extends joint.BaseJavaClass
|
|
|
1666
1688
|
|
|
1667
1689
|
/**
|
|
1668
1690
|
* Short bar's height of Postal barcodes.
|
|
1691
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setShortBarHeight().
|
|
1669
1692
|
*/
|
|
1670
1693
|
setPostalShortBarHeight(value)
|
|
1671
1694
|
{
|
|
@@ -1688,7 +1711,7 @@ class PostalParameters extends joint.BaseJavaClass
|
|
|
1688
1711
|
*/
|
|
1689
1712
|
class AustralianPostParameters extends joint.BaseJavaClass
|
|
1690
1713
|
{
|
|
1691
|
-
|
|
1714
|
+
shortBarHeight;
|
|
1692
1715
|
|
|
1693
1716
|
constructor(javaClass)
|
|
1694
1717
|
{
|
|
@@ -1698,28 +1721,73 @@ class AustralianPostParameters extends joint.BaseJavaClass
|
|
|
1698
1721
|
|
|
1699
1722
|
init()
|
|
1700
1723
|
{
|
|
1701
|
-
this.
|
|
1724
|
+
this.shortBarHeight = new Unit(this.getJavaClass().getAustralianPostShortBarHeightSync());
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
* <p>
|
|
1729
|
+
* Short bar's height of AustralianPost barcode.
|
|
1730
|
+
* </p>
|
|
1731
|
+
*/
|
|
1732
|
+
getShortBarHeight()
|
|
1733
|
+
{
|
|
1734
|
+
return this.shortBarHeight;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
/**
|
|
1738
|
+
* <p>
|
|
1739
|
+
* Short bar's height of AustralianPost barcode.
|
|
1740
|
+
* </p>
|
|
1741
|
+
*/
|
|
1742
|
+
setShortBarHeight(value)
|
|
1743
|
+
{
|
|
1744
|
+
this.shortBarHeight = value;
|
|
1745
|
+
this.getJavaClass().setShortBarHeightSync(value.getNativeObject());
|
|
1702
1746
|
}
|
|
1703
1747
|
|
|
1748
|
+
|
|
1704
1749
|
/**
|
|
1705
1750
|
* Short bar's height of AustralianPost barcode.
|
|
1751
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getShortBarHeight().
|
|
1706
1752
|
*/
|
|
1707
1753
|
getAustralianPostShortBarHeight()
|
|
1708
1754
|
{
|
|
1709
|
-
return this.
|
|
1755
|
+
return this.shortBarHeight;
|
|
1710
1756
|
}
|
|
1711
1757
|
|
|
1712
1758
|
/**
|
|
1713
1759
|
* Short bar's height of AustralianPost barcode.
|
|
1760
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setShortBarHeight().
|
|
1714
1761
|
*/
|
|
1715
1762
|
setAustralianPostShortBarHeight(value)
|
|
1716
1763
|
{
|
|
1717
1764
|
this.getJavaClass().setAustralianPostShortBarHeightSync(value.getJavaClass());
|
|
1718
|
-
this.
|
|
1765
|
+
this.shortBarHeight = value;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
/**
|
|
1769
|
+
* <p>
|
|
1770
|
+
* Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
|
|
1771
|
+
* </p>
|
|
1772
|
+
*/
|
|
1773
|
+
getEncodingTable()
|
|
1774
|
+
{
|
|
1775
|
+
return this.getJavaClass().getEncodingTableSync();
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>
|
|
1780
|
+
* Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
|
|
1781
|
+
* </p>
|
|
1782
|
+
*/
|
|
1783
|
+
setEncodingTable(value)
|
|
1784
|
+
{
|
|
1785
|
+
this.getJavaClass().setEncodingTableSync(value);
|
|
1719
1786
|
}
|
|
1720
1787
|
|
|
1721
1788
|
/**
|
|
1722
1789
|
* Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
|
|
1790
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodingTable().
|
|
1723
1791
|
*/
|
|
1724
1792
|
getAustralianPostEncodingTable()
|
|
1725
1793
|
{
|
|
@@ -1728,6 +1796,7 @@ class AustralianPostParameters extends joint.BaseJavaClass
|
|
|
1728
1796
|
|
|
1729
1797
|
/**
|
|
1730
1798
|
* Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
|
|
1799
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodingTable().
|
|
1731
1800
|
*/
|
|
1732
1801
|
setAustralianPostEncodingTable(value)
|
|
1733
1802
|
{
|
|
@@ -1942,11 +2011,36 @@ class DataMatrixParameters extends joint.BaseJavaClass
|
|
|
1942
2011
|
{
|
|
1943
2012
|
}
|
|
1944
2013
|
|
|
2014
|
+
/**
|
|
2015
|
+
* <p>
|
|
2016
|
+
* Gets a Datamatrix symbol size.
|
|
2017
|
+
* Default value: Version.Auto.
|
|
2018
|
+
* </p>
|
|
2019
|
+
* @return a Datamatrix symbol size.
|
|
2020
|
+
*/
|
|
2021
|
+
getVersion()
|
|
2022
|
+
{
|
|
2023
|
+
return this.getJavaClass().getVersionSync();
|
|
2024
|
+
}
|
|
2025
|
+
/**
|
|
2026
|
+
* <p>
|
|
2027
|
+
* Sets a Datamatrix symbol size.
|
|
2028
|
+
* Default value: Version.Auto.
|
|
2029
|
+
* </p>
|
|
2030
|
+
* @param value a Datamatrix symbol size.
|
|
2031
|
+
*/
|
|
2032
|
+
setVersion(value)
|
|
2033
|
+
{
|
|
2034
|
+
this.getJavaClass().setVersionSync(value);
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
|
|
1945
2038
|
/**
|
|
1946
2039
|
* <p>
|
|
1947
2040
|
* Gets a Datamatrix symbol size.
|
|
1948
2041
|
* Default value: DataMatrixVersion.Auto.
|
|
1949
2042
|
* </p>
|
|
2043
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getVersion().
|
|
1950
2044
|
*/
|
|
1951
2045
|
getDataMatrixVersion()
|
|
1952
2046
|
{
|
|
@@ -1958,15 +2052,41 @@ class DataMatrixParameters extends joint.BaseJavaClass
|
|
|
1958
2052
|
* Sets a Datamatrix symbol size.
|
|
1959
2053
|
* Default value: DataMatrixVersion.Auto.
|
|
1960
2054
|
* </p>
|
|
2055
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setVersion().
|
|
1961
2056
|
*/
|
|
1962
2057
|
setDataMatrixVersion(value)
|
|
1963
2058
|
{
|
|
1964
2059
|
this.getJavaClass().setDataMatrixVersionSync(value);
|
|
1965
2060
|
}
|
|
1966
2061
|
|
|
2062
|
+
/**
|
|
2063
|
+
* <p>
|
|
2064
|
+
* Gets a Datamatrix ECC type.
|
|
2065
|
+
* Default value: DataMatrixEccType.Ecc200.
|
|
2066
|
+
* </p>
|
|
2067
|
+
* @return a Datamatrix ECC type.
|
|
2068
|
+
*/
|
|
2069
|
+
getEccType()
|
|
2070
|
+
{
|
|
2071
|
+
return this.getJavaClass().getEccTypeSync();
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
/**
|
|
2075
|
+
* <p>
|
|
2076
|
+
* Sets a Datamatrix ECC type.
|
|
2077
|
+
* Default value: DataMatrixEccType.Ecc200.
|
|
2078
|
+
* </p>
|
|
2079
|
+
* @param value a Datamatrix ECC type.
|
|
2080
|
+
*/
|
|
2081
|
+
setEccType(value)
|
|
2082
|
+
{
|
|
2083
|
+
this.getJavaClass().setEccTypeSync(value);
|
|
2084
|
+
}
|
|
2085
|
+
|
|
1967
2086
|
/**
|
|
1968
2087
|
* Gets a Datamatrix ECC type.<br>
|
|
1969
2088
|
* Default value: DataMatrixEccType.ECC_200.
|
|
2089
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEccType().
|
|
1970
2090
|
*/
|
|
1971
2091
|
getDataMatrixEcc()
|
|
1972
2092
|
{
|
|
@@ -1976,15 +2096,39 @@ class DataMatrixParameters extends joint.BaseJavaClass
|
|
|
1976
2096
|
/**
|
|
1977
2097
|
* Sets a Datamatrix ECC type.<br>
|
|
1978
2098
|
* Default value: DataMatrixEccType.ECC_200.
|
|
2099
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEccType().
|
|
1979
2100
|
*/
|
|
1980
2101
|
setDataMatrixEcc(value)
|
|
1981
2102
|
{
|
|
1982
2103
|
this.getJavaClass().setDataMatrixEccSync(value);
|
|
1983
2104
|
}
|
|
1984
2105
|
|
|
2106
|
+
/**
|
|
2107
|
+
* <p>
|
|
2108
|
+
* Encode mode of Datamatrix barcode.
|
|
2109
|
+
* Default value: EncodeMode.Auto.
|
|
2110
|
+
* </p>
|
|
2111
|
+
*/
|
|
2112
|
+
getEncodeMode()
|
|
2113
|
+
{
|
|
2114
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
/**
|
|
2118
|
+
* <p>
|
|
2119
|
+
* Encode mode of Datamatrix barcode.
|
|
2120
|
+
* Default value: EncodeMode.Auto.
|
|
2121
|
+
* </p>
|
|
2122
|
+
*/
|
|
2123
|
+
setEncodeMode(value)
|
|
2124
|
+
{
|
|
2125
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
2126
|
+
}
|
|
2127
|
+
|
|
1985
2128
|
/**
|
|
1986
2129
|
* Encode mode of Datamatrix barcode.<br>
|
|
1987
2130
|
* Default value: DataMatrixEncodeMode.AUTO.
|
|
2131
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
1988
2132
|
*/
|
|
1989
2133
|
getDataMatrixEncodeMode()
|
|
1990
2134
|
{
|
|
@@ -1994,6 +2138,7 @@ class DataMatrixParameters extends joint.BaseJavaClass
|
|
|
1994
2138
|
/**
|
|
1995
2139
|
* Encode mode of Datamatrix barcode.<br>
|
|
1996
2140
|
* Default value: DataMatrixEncodeMode.AUTO.
|
|
2141
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
1997
2142
|
*/
|
|
1998
2143
|
setDataMatrixEncodeMode(value)
|
|
1999
2144
|
{
|
|
@@ -2230,11 +2375,34 @@ class PatchCodeParameters extends joint.BaseJavaClass
|
|
|
2230
2375
|
this.getJavaClass().setExtraBarcodeTextSync(value);
|
|
2231
2376
|
}
|
|
2232
2377
|
|
|
2378
|
+
/**
|
|
2379
|
+
* <p>
|
|
2380
|
+
* PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders.
|
|
2381
|
+
* Default value: PatchFormat.PatchOnly
|
|
2382
|
+
* </p>
|
|
2383
|
+
*/
|
|
2384
|
+
getFormat()
|
|
2385
|
+
{
|
|
2386
|
+
return this.getJavaClass().getFormatSync();
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
/**
|
|
2390
|
+
* <p>
|
|
2391
|
+
* PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders.
|
|
2392
|
+
* Default value: PatchFormat.PatchOnly
|
|
2393
|
+
* </p>
|
|
2394
|
+
*/
|
|
2395
|
+
setFormat(value)
|
|
2396
|
+
{
|
|
2397
|
+
this.getJavaClass().setFormatSync(value);
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2233
2400
|
/**
|
|
2234
2401
|
* PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders.<br>
|
|
2235
2402
|
* Default value: PatchFormat.PATCH_ONLY
|
|
2236
2403
|
*
|
|
2237
2404
|
* @return PatchFormat
|
|
2405
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getFormat().
|
|
2238
2406
|
*/
|
|
2239
2407
|
getPatchFormat()
|
|
2240
2408
|
{
|
|
@@ -2244,6 +2412,7 @@ class PatchCodeParameters extends joint.BaseJavaClass
|
|
|
2244
2412
|
/**
|
|
2245
2413
|
* PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders.<br>
|
|
2246
2414
|
* Default value: PatchFormat.PATCH_ONLY
|
|
2415
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setFormat().
|
|
2247
2416
|
*/
|
|
2248
2417
|
setPatchFormat(value)
|
|
2249
2418
|
{
|
|
@@ -2357,6 +2526,7 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2357
2526
|
/**
|
|
2358
2527
|
* Identifies DotCode encode mode.<br>
|
|
2359
2528
|
* Default value: Auto.
|
|
2529
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
2360
2530
|
*/
|
|
2361
2531
|
getDotCodeEncodeMode()
|
|
2362
2532
|
{
|
|
@@ -2368,12 +2538,36 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2368
2538
|
* Identifies DotCode encode mode.
|
|
2369
2539
|
* </p>
|
|
2370
2540
|
* Default value: Auto.
|
|
2541
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
2371
2542
|
*/
|
|
2372
2543
|
setDotCodeEncodeMode(value)
|
|
2373
2544
|
{
|
|
2374
2545
|
this.getJavaClass().setDotCodeEncodeModeSync(value);
|
|
2375
2546
|
}
|
|
2376
2547
|
|
|
2548
|
+
|
|
2549
|
+
/**
|
|
2550
|
+
* <p>
|
|
2551
|
+
* Identifies DotCode encode mode.
|
|
2552
|
+
* Default value: Auto.
|
|
2553
|
+
* </p>
|
|
2554
|
+
*/
|
|
2555
|
+
getEncodeMode()
|
|
2556
|
+
{
|
|
2557
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
/**
|
|
2561
|
+
* <p>
|
|
2562
|
+
* Identifies DotCode encode mode.
|
|
2563
|
+
* Default value: Auto.
|
|
2564
|
+
* </p>
|
|
2565
|
+
*/
|
|
2566
|
+
setEncodeMode(value)
|
|
2567
|
+
{
|
|
2568
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2377
2571
|
/**
|
|
2378
2572
|
* <p>
|
|
2379
2573
|
* Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader.
|
|
@@ -2401,6 +2595,27 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2401
2595
|
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
2402
2596
|
* </p>
|
|
2403
2597
|
*/
|
|
2598
|
+
getStructuredAppendModeBarcodeId()
|
|
2599
|
+
{
|
|
2600
|
+
return this.getJavaClass().getStructuredAppendModeBarcodeIdSync();
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
/**
|
|
2604
|
+
* <p>
|
|
2605
|
+
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
2606
|
+
* </p>
|
|
2607
|
+
*/
|
|
2608
|
+
setStructuredAppendModeBarcodeId(value)
|
|
2609
|
+
{
|
|
2610
|
+
this.getJavaClass().setStructuredAppendModeBarcodeIdSync(value);
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2613
|
+
/**
|
|
2614
|
+
* <p>
|
|
2615
|
+
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
2616
|
+
* </p>
|
|
2617
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId().
|
|
2618
|
+
*/
|
|
2404
2619
|
getDotCodeStructuredAppendModeBarcodeId()
|
|
2405
2620
|
{
|
|
2406
2621
|
return this.getJavaClass().getDotCodeStructuredAppendModeBarcodeIdSync();
|
|
@@ -2410,6 +2625,7 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2410
2625
|
* <p>
|
|
2411
2626
|
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
2412
2627
|
* </p>
|
|
2628
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodeId().
|
|
2413
2629
|
*/
|
|
2414
2630
|
setDotCodeStructuredAppendModeBarcodeId(value)
|
|
2415
2631
|
{
|
|
@@ -2421,6 +2637,27 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2421
2637
|
* Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.
|
|
2422
2638
|
* </p>
|
|
2423
2639
|
*/
|
|
2640
|
+
getStructuredAppendModeBarcodesCount()
|
|
2641
|
+
{
|
|
2642
|
+
return this.getJavaClass().getStructuredAppendModeBarcodesCountSync();
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2645
|
+
/**
|
|
2646
|
+
* <p>
|
|
2647
|
+
* Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.
|
|
2648
|
+
* </p>
|
|
2649
|
+
*/
|
|
2650
|
+
setStructuredAppendModeBarcodesCount(value)
|
|
2651
|
+
{
|
|
2652
|
+
this.getJavaClass().setStructuredAppendModeBarcodesCountSync(value);
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
/**
|
|
2656
|
+
* <p>
|
|
2657
|
+
* Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.
|
|
2658
|
+
* </p>
|
|
2659
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount().
|
|
2660
|
+
*/
|
|
2424
2661
|
getDotCodeStructuredAppendModeBarcodesCount()
|
|
2425
2662
|
{
|
|
2426
2663
|
return this.getJavaClass().getDotCodeStructuredAppendModeBarcodesCountSync();
|
|
@@ -2430,6 +2667,7 @@ class DotCodeParameters extends joint.BaseJavaClass
|
|
|
2430
2667
|
* <p>
|
|
2431
2668
|
* Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35.
|
|
2432
2669
|
* </p>
|
|
2670
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodesCount().
|
|
2433
2671
|
*/
|
|
2434
2672
|
setDotCodeStructuredAppendModeBarcodesCount(value)
|
|
2435
2673
|
{
|
|
@@ -2624,9 +2862,35 @@ class ITFParameters extends joint.BaseJavaClass
|
|
|
2624
2862
|
this.itfBorderThickness = new Unit(this.getJavaClass().getItfBorderThicknessSync());
|
|
2625
2863
|
}
|
|
2626
2864
|
|
|
2865
|
+
/**
|
|
2866
|
+
* <p>
|
|
2867
|
+
* Gets an ITF border (bearer bar) thickness in Unit value.
|
|
2868
|
+
* Default value: 12pt.
|
|
2869
|
+
* </p>
|
|
2870
|
+
* @return an ITF border (bearer bar) thickness in Unit value.
|
|
2871
|
+
*/
|
|
2872
|
+
getBorderThickness()
|
|
2873
|
+
{
|
|
2874
|
+
return this.itfBorderThickness;
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
/**
|
|
2878
|
+
* <p>
|
|
2879
|
+
* Sets an ITF border (bearer bar) thickness in Unit value.
|
|
2880
|
+
* Default value: 12pt.
|
|
2881
|
+
* </p>
|
|
2882
|
+
* @param value an ITF border (bearer bar) thickness in Unit value.
|
|
2883
|
+
*/
|
|
2884
|
+
setBorderThickness(value)
|
|
2885
|
+
{
|
|
2886
|
+
this.itfBorderThickness = value;
|
|
2887
|
+
this.getJavaClass().setBorderThicknessSync(value.getNativeObject());
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2627
2890
|
/**
|
|
2628
2891
|
* Gets an ITF border (bearer bar) thickness in Unit value.<br>
|
|
2629
2892
|
* Default value: 12pt.
|
|
2893
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getBorderThickness().
|
|
2630
2894
|
*/
|
|
2631
2895
|
getItfBorderThickness()
|
|
2632
2896
|
{
|
|
@@ -2636,6 +2900,7 @@ class ITFParameters extends joint.BaseJavaClass
|
|
|
2636
2900
|
/**
|
|
2637
2901
|
* Sets an ITF border (bearer bar) thickness in Unit value.<br>
|
|
2638
2902
|
* Default value: 12pt.
|
|
2903
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setBorderThickness().
|
|
2639
2904
|
*/
|
|
2640
2905
|
setItfBorderThickness(value)
|
|
2641
2906
|
{
|
|
@@ -2643,9 +2908,32 @@ class ITFParameters extends joint.BaseJavaClass
|
|
|
2643
2908
|
this.itfBorderThickness = value;
|
|
2644
2909
|
}
|
|
2645
2910
|
|
|
2911
|
+
/**
|
|
2912
|
+
* <p>
|
|
2913
|
+
* Border type of ITF barcode.
|
|
2914
|
+
* Default value: ITF14BorderType.Bar.
|
|
2915
|
+
* </p>
|
|
2916
|
+
*/
|
|
2917
|
+
getBorderType()
|
|
2918
|
+
{
|
|
2919
|
+
return this.getJavaClass().getBorderTypeSync();
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
/**
|
|
2923
|
+
* <p>
|
|
2924
|
+
* Border type of ITF barcode.
|
|
2925
|
+
* Default value: ITF14BorderType.Bar.
|
|
2926
|
+
* </p>
|
|
2927
|
+
*/
|
|
2928
|
+
setBorderType(value)
|
|
2929
|
+
{
|
|
2930
|
+
this.getJavaClass().setBorderTypeSync(value);
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2646
2933
|
/**
|
|
2647
2934
|
* Border type of ITF barcode.<br>
|
|
2648
2935
|
* Default value: ITF14BorderType.BAR.
|
|
2936
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getBorderType().
|
|
2649
2937
|
*/
|
|
2650
2938
|
getItfBorderType()
|
|
2651
2939
|
{
|
|
@@ -2655,6 +2943,7 @@ class ITFParameters extends joint.BaseJavaClass
|
|
|
2655
2943
|
/**
|
|
2656
2944
|
* Border type of ITF barcode.<br>
|
|
2657
2945
|
* Default value: ITF14BorderType.BAR.
|
|
2946
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setBorderType().
|
|
2658
2947
|
*/
|
|
2659
2948
|
setItfBorderType(value)
|
|
2660
2949
|
{
|
|
@@ -2711,6 +3000,32 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2711
3000
|
this.structuredAppend = new QrStructuredAppendParameters(this.getJavaClass().getStructuredAppendSync());
|
|
2712
3001
|
}
|
|
2713
3002
|
|
|
3003
|
+
/**
|
|
3004
|
+
* <p>
|
|
3005
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
3006
|
+
* about the used references for encoding the data in the symbol.
|
|
3007
|
+
* Current implementation consists all well known charset encodings.
|
|
3008
|
+
* Not supported by MicroQR.
|
|
3009
|
+
* </p>
|
|
3010
|
+
*/
|
|
3011
|
+
getECIEncoding()
|
|
3012
|
+
{
|
|
3013
|
+
return this.getJavaClass().getECIEncodingSync();
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
/**
|
|
3017
|
+
* <p>
|
|
3018
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
3019
|
+
* about the used references for encoding the data in the symbol.
|
|
3020
|
+
* Current implementation consists all well known charset encodings.
|
|
3021
|
+
* Not supported by MicroQR.
|
|
3022
|
+
* </p>
|
|
3023
|
+
*/
|
|
3024
|
+
setECIEncoding( value)
|
|
3025
|
+
{
|
|
3026
|
+
this.getJavaClass().setECIEncodingSync(value);
|
|
3027
|
+
}
|
|
3028
|
+
|
|
2714
3029
|
/**
|
|
2715
3030
|
* QR structured append parameters.
|
|
2716
3031
|
*/
|
|
@@ -2732,20 +3047,44 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2732
3047
|
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details<br>
|
|
2733
3048
|
* about the used references for encoding the data in the symbol.<br>
|
|
2734
3049
|
* Current implementation consists all well known charset encodings.
|
|
3050
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding().
|
|
2735
3051
|
*/
|
|
2736
3052
|
getQrECIEncoding()
|
|
2737
3053
|
{
|
|
2738
3054
|
return this.getJavaClass().getQrECIEncodingSync();
|
|
2739
3055
|
}
|
|
2740
3056
|
|
|
3057
|
+
/**
|
|
3058
|
+
* <p>
|
|
3059
|
+
* QR symbology type of BarCode's encoding mode.
|
|
3060
|
+
* Default value: QREncodeMode.Auto.
|
|
3061
|
+
* </p>
|
|
3062
|
+
*/
|
|
3063
|
+
getEncodeMode()
|
|
3064
|
+
{
|
|
3065
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
/**
|
|
3069
|
+
* <p>
|
|
3070
|
+
* QR symbology type of BarCode's encoding mode.
|
|
3071
|
+
* Default value: QREncodeMode.Auto.
|
|
3072
|
+
* </p>
|
|
3073
|
+
*/
|
|
3074
|
+
setEncodeMode(value)
|
|
3075
|
+
{
|
|
3076
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
3077
|
+
}
|
|
3078
|
+
|
|
2741
3079
|
/**
|
|
2742
3080
|
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details<br>
|
|
2743
3081
|
* about the used references for encoding the data in the symbol.<br>
|
|
2744
3082
|
* Current implementation consists all well known charset encodings.
|
|
3083
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding().
|
|
2745
3084
|
*/
|
|
2746
3085
|
setQrECIEncoding(value)
|
|
2747
3086
|
{
|
|
2748
|
-
this.getJavaClass().
|
|
3087
|
+
this.getJavaClass().setECIEncodingSync(value);
|
|
2749
3088
|
}
|
|
2750
3089
|
|
|
2751
3090
|
/**
|
|
@@ -2760,15 +3099,16 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2760
3099
|
/**
|
|
2761
3100
|
* QR symbology type of BarCode's encoding mode.<br>
|
|
2762
3101
|
* Default value: QREncodeMode.AUTO.
|
|
3102
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
2763
3103
|
*/
|
|
2764
3104
|
setQrEncodeMode(value)
|
|
2765
3105
|
{
|
|
2766
|
-
|
|
2767
|
-
this.getJavaClass().setQrEncodeModeSync(value);
|
|
3106
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
2768
3107
|
}
|
|
2769
3108
|
|
|
2770
3109
|
/**
|
|
2771
3110
|
* QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
|
|
3111
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
2772
3112
|
*/
|
|
2773
3113
|
getQrEncodeType()
|
|
2774
3114
|
{
|
|
@@ -2778,15 +3118,39 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2778
3118
|
|
|
2779
3119
|
/**
|
|
2780
3120
|
* QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
|
|
3121
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
2781
3122
|
*/
|
|
2782
3123
|
setQrEncodeType(value)
|
|
2783
3124
|
{
|
|
2784
3125
|
this.getJavaClass().setQrEncodeTypeSync(value);
|
|
2785
3126
|
}
|
|
2786
3127
|
|
|
3128
|
+
/**
|
|
3129
|
+
* <p>
|
|
3130
|
+
* Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode.
|
|
3131
|
+
* From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel.
|
|
3132
|
+
* </p>
|
|
3133
|
+
*/
|
|
3134
|
+
getErrorLevel()
|
|
3135
|
+
{
|
|
3136
|
+
return this.getJavaClass().getErrorLevelSync();
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
/**
|
|
3140
|
+
* <p>
|
|
3141
|
+
* Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode.
|
|
3142
|
+
* From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel.
|
|
3143
|
+
* </p>
|
|
3144
|
+
*/
|
|
3145
|
+
setErrorLevel(value)
|
|
3146
|
+
{
|
|
3147
|
+
this.getJavaClass().setErrorLevelSync(value);
|
|
3148
|
+
}
|
|
3149
|
+
|
|
2787
3150
|
/**
|
|
2788
3151
|
* Level of Reed-Solomon error correction for QR barcode.<br>
|
|
2789
3152
|
* From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel.
|
|
3153
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel().
|
|
2790
3154
|
*/
|
|
2791
3155
|
getQrErrorLevel()
|
|
2792
3156
|
{
|
|
@@ -2796,16 +3160,40 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2796
3160
|
/**
|
|
2797
3161
|
* Level of Reed-Solomon error correction for QR barcode.<br>
|
|
2798
3162
|
* From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel.
|
|
3163
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel().
|
|
2799
3164
|
*/
|
|
2800
3165
|
setQrErrorLevel(value)
|
|
2801
3166
|
{
|
|
2802
|
-
this.getJavaClass().
|
|
3167
|
+
this.getJavaClass().setErrorLevelSync(value);
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
/**
|
|
3171
|
+
* <p>
|
|
3172
|
+
* Version of QR Code.From Version1 to Version40.
|
|
3173
|
+
* Default value is QRVersion.Auto.
|
|
3174
|
+
* </p>
|
|
3175
|
+
*/
|
|
3176
|
+
getVersion()
|
|
3177
|
+
{
|
|
3178
|
+
return this.getJavaClass().getVersionSync();
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
/**
|
|
3182
|
+
* <p>
|
|
3183
|
+
* Version of QR Code.From Version1 to Version40.
|
|
3184
|
+
* Default value is QRVersion.Auto.
|
|
3185
|
+
* </p>
|
|
3186
|
+
*/
|
|
3187
|
+
setVersion(value)
|
|
3188
|
+
{
|
|
3189
|
+
this.getJavaClass().setVersionSync(value);
|
|
2803
3190
|
}
|
|
2804
3191
|
|
|
2805
3192
|
/**
|
|
2806
3193
|
* Version of QR Code.<br>
|
|
2807
3194
|
* From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.<br>
|
|
2808
3195
|
* Default value is QRVersion.AUTO.
|
|
3196
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getVersion().
|
|
2809
3197
|
*/
|
|
2810
3198
|
getQrVersion()
|
|
2811
3199
|
{
|
|
@@ -2816,10 +3204,11 @@ class QrParameters extends joint.BaseJavaClass
|
|
|
2816
3204
|
* Version of QR Code.<br>
|
|
2817
3205
|
* From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.<br>
|
|
2818
3206
|
* Default value is QRVersion.AUTO.
|
|
3207
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setVersion().
|
|
2819
3208
|
*/
|
|
2820
3209
|
setQrVersion(value)
|
|
2821
3210
|
{
|
|
2822
|
-
this.getJavaClass().
|
|
3211
|
+
this.getJavaClass().setVersionSync(value);
|
|
2823
3212
|
}
|
|
2824
3213
|
|
|
2825
3214
|
/**
|
|
@@ -2969,16 +3358,72 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
2969
3358
|
/**
|
|
2970
3359
|
* Identifies Pdf417 encode mode.
|
|
2971
3360
|
* Default value: Auto.
|
|
3361
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
2972
3362
|
*/
|
|
2973
3363
|
setPdf417EncodeMode(pdf417EncodeMode)
|
|
2974
3364
|
{
|
|
2975
3365
|
this.getJavaClass().setPdf417EncodeModeSync(pdf417EncodeMode);
|
|
2976
3366
|
}
|
|
2977
3367
|
|
|
3368
|
+
/**
|
|
3369
|
+
* <p>
|
|
3370
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
3371
|
+
* about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields.
|
|
3372
|
+
* Current implementation consists all well known charset encodings.
|
|
3373
|
+
* </p>
|
|
3374
|
+
*/
|
|
3375
|
+
getECIEncoding()
|
|
3376
|
+
{
|
|
3377
|
+
return this.getJavaClass().getECIEncodingSync();
|
|
3378
|
+
}
|
|
3379
|
+
|
|
3380
|
+
/**
|
|
3381
|
+
* <p>
|
|
3382
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
3383
|
+
* about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields.
|
|
3384
|
+
* Current implementation consists all well known charset encodings.
|
|
3385
|
+
* </p>
|
|
3386
|
+
*/
|
|
3387
|
+
setECIEncoding(value)
|
|
3388
|
+
{
|
|
3389
|
+
this.getJavaClass().setECIEncodingSync(value);
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
/**
|
|
3393
|
+
* <p>
|
|
3394
|
+
* Gets Pdf417 symbology type of BarCode's error correction level
|
|
3395
|
+
* ranging from level0 to level8, level0 means no error correction info,
|
|
3396
|
+
* level8 means best error correction which means a larger picture.
|
|
3397
|
+
* </p>
|
|
3398
|
+
* @return Pdf417 symbology type of BarCode's error correction level
|
|
3399
|
+
* ranging from level0 to level8, level0 means no error correction info,
|
|
3400
|
+
* level8 means best error correction which means a larger picture.
|
|
3401
|
+
*/
|
|
3402
|
+
getErrorLevel()
|
|
3403
|
+
{
|
|
3404
|
+
return this.getJavaClass().getErrorLevelSync();
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
/**
|
|
3408
|
+
* <p>
|
|
3409
|
+
* Sets Pdf417 symbology type of BarCode's error correction level
|
|
3410
|
+
* ranging from level0 to level8, level0 means no error correction info,
|
|
3411
|
+
* level8 means best error correction which means a larger picture.
|
|
3412
|
+
* </p>
|
|
3413
|
+
* @param value Pdf417 symbology type of BarCode's error correction level
|
|
3414
|
+
* ranging from level0 to level8, level0 means no error correction info,
|
|
3415
|
+
* level8 means best error correction which means a larger picture.
|
|
3416
|
+
*/
|
|
3417
|
+
setErrorLevel(value)
|
|
3418
|
+
{
|
|
3419
|
+
this.getJavaClass().setErrorLevelSync(value);
|
|
3420
|
+
}
|
|
3421
|
+
|
|
2978
3422
|
/**
|
|
2979
3423
|
* Gets Pdf417 symbology type of BarCode's error correction level<br>
|
|
2980
3424
|
* ranging from level0 to level8, level0 means no error correction info,<br>
|
|
2981
3425
|
* level8 means best error correction which means a larger picture.
|
|
3426
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel().
|
|
2982
3427
|
*/
|
|
2983
3428
|
getPdf417ErrorLevel()
|
|
2984
3429
|
{
|
|
@@ -2989,6 +3434,7 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
2989
3434
|
* Sets Pdf417 symbology type of BarCode's error correction level<br>
|
|
2990
3435
|
* ranging from level0 to level8, level0 means no error correction info,<br>
|
|
2991
3436
|
* level8 means best error correction which means a larger picture.
|
|
3437
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel().
|
|
2992
3438
|
*/
|
|
2993
3439
|
setPdf417ErrorLevel(value)
|
|
2994
3440
|
{
|
|
@@ -2996,7 +3442,30 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
2996
3442
|
}
|
|
2997
3443
|
|
|
2998
3444
|
/**
|
|
3445
|
+
* <p>
|
|
2999
3446
|
* Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
|
|
3447
|
+
* Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode.
|
|
3448
|
+
* </p>
|
|
3449
|
+
*/
|
|
3450
|
+
getTruncate()
|
|
3451
|
+
{
|
|
3452
|
+
return this.getJavaClass().getTruncateSync();
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
/**
|
|
3456
|
+
* <p>
|
|
3457
|
+
* Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
|
|
3458
|
+
* Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode.
|
|
3459
|
+
* </p>
|
|
3460
|
+
*/
|
|
3461
|
+
setTruncate(value)
|
|
3462
|
+
{
|
|
3463
|
+
this.getJavaClass().setTruncateSync(value);
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
/**
|
|
3467
|
+
* Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
|
|
3468
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getTruncate().
|
|
3000
3469
|
*/
|
|
3001
3470
|
getPdf417Truncate()
|
|
3002
3471
|
{
|
|
@@ -3005,6 +3474,7 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3005
3474
|
|
|
3006
3475
|
/**
|
|
3007
3476
|
* Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
|
|
3477
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setTruncate().
|
|
3008
3478
|
*/
|
|
3009
3479
|
setPdf417Truncate(value)
|
|
3010
3480
|
{
|
|
@@ -3059,9 +3529,33 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3059
3529
|
this.getJavaClass().setAspectRatioSync(java.newFloat(value));
|
|
3060
3530
|
}
|
|
3061
3531
|
|
|
3532
|
+
/**
|
|
3533
|
+
* <p>
|
|
3534
|
+
* MacroPdf417 barcode's file ID (Required field).
|
|
3535
|
+
* MicroPDF417 barcode's file ID (Required field for Structured Append mode)
|
|
3536
|
+
* </p>
|
|
3537
|
+
*/
|
|
3538
|
+
getMacroPdf417FileID()
|
|
3539
|
+
{
|
|
3540
|
+
return this.getJavaClass().getMacroPdf417FileIDSync();
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
/**
|
|
3544
|
+
* <p>
|
|
3545
|
+
* MacroPdf417 barcode's file ID (Required field).
|
|
3546
|
+
* MicroPDF417 barcode's file ID (Required field for Structured Append mode)
|
|
3547
|
+
* </p>
|
|
3548
|
+
*/
|
|
3549
|
+
setMacroPdf417FileID(value)
|
|
3550
|
+
{
|
|
3551
|
+
this.getJavaClass().setMacroPdf417FileIDSync(value);
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
|
|
3062
3555
|
/**
|
|
3063
3556
|
* Getsmacro Pdf417 barcode's file ID.<br>
|
|
3064
3557
|
* Used for MacroPdf417.
|
|
3558
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileID().
|
|
3065
3559
|
*/
|
|
3066
3560
|
getPdf417MacroFileID()
|
|
3067
3561
|
{
|
|
@@ -3071,14 +3565,38 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3071
3565
|
/**
|
|
3072
3566
|
* Sets macro Pdf417 barcode's file ID.<br>
|
|
3073
3567
|
* Used for MacroPdf417.
|
|
3568
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileID().
|
|
3074
3569
|
*/
|
|
3075
3570
|
setPdf417MacroFileID(value)
|
|
3076
3571
|
{
|
|
3077
3572
|
this.getJavaClass().setPdf417MacroFileIDSync(value);
|
|
3078
3573
|
}
|
|
3079
3574
|
|
|
3575
|
+
/**
|
|
3576
|
+
* <p>
|
|
3577
|
+
* MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1.
|
|
3578
|
+
* MicroPDF417 barcode's segment ID (Required field for Structured Append mode)
|
|
3579
|
+
* </p>
|
|
3580
|
+
*/
|
|
3581
|
+
getMacroPdf417SegmentID()
|
|
3582
|
+
{
|
|
3583
|
+
return this.getJavaClass().getMacroPdf417SegmentIDSync();
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
/**
|
|
3587
|
+
* <p>
|
|
3588
|
+
* MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1.
|
|
3589
|
+
* MicroPDF417 barcode's segment ID (Required field for Structured Append mode)
|
|
3590
|
+
* </p>
|
|
3591
|
+
*/
|
|
3592
|
+
setMacroPdf417SegmentID(value)
|
|
3593
|
+
{
|
|
3594
|
+
this.getJavaClass().setMacroPdf417SegmentIDSync(value);
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3080
3597
|
/**
|
|
3081
3598
|
* Gets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1.
|
|
3599
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417SegmentID().
|
|
3082
3600
|
*/
|
|
3083
3601
|
getPdf417MacroSegmentID()
|
|
3084
3602
|
{
|
|
@@ -3087,6 +3605,7 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3087
3605
|
|
|
3088
3606
|
/**
|
|
3089
3607
|
* Sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1.
|
|
3608
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417SegmentID().
|
|
3090
3609
|
*/
|
|
3091
3610
|
setPdf417MacroSegmentID(value)
|
|
3092
3611
|
{
|
|
@@ -3095,22 +3614,68 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3095
3614
|
|
|
3096
3615
|
/**
|
|
3097
3616
|
* Gets macro Pdf417 barcode segments count.
|
|
3617
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417SegmentsCount().
|
|
3098
3618
|
*/
|
|
3099
3619
|
getPdf417MacroSegmentsCount()
|
|
3100
3620
|
{
|
|
3101
3621
|
return this.getJavaClass().getPdf417MacroSegmentsCountSync();
|
|
3102
3622
|
}
|
|
3103
3623
|
|
|
3624
|
+
/**
|
|
3625
|
+
* <p>
|
|
3626
|
+
* MacroPdf417 barcode segments count (optional field).
|
|
3627
|
+
* MicroPDF417 barcode segments count (optional field for Structured Append mode)
|
|
3628
|
+
* </p>
|
|
3629
|
+
*/
|
|
3630
|
+
getMacroPdf417SegmentsCount()
|
|
3631
|
+
{
|
|
3632
|
+
return this.getJavaClass().getMacroPdf417SegmentsCountSync();
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
/**
|
|
3636
|
+
* <p>
|
|
3637
|
+
* MacroPdf417 barcode segments count (optional field).
|
|
3638
|
+
* MicroPDF417 barcode segments count (optional field for Structured Append mode)
|
|
3639
|
+
* </p>
|
|
3640
|
+
*/
|
|
3641
|
+
setMacroPdf417SegmentsCount(value)
|
|
3642
|
+
{
|
|
3643
|
+
this.getJavaClass().setMacroPdf417SegmentsCountSync(value);
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3104
3646
|
/**
|
|
3105
3647
|
* Sets macro Pdf417 barcode segments count.
|
|
3648
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417SegmentsCount().
|
|
3106
3649
|
*/
|
|
3107
3650
|
setPdf417MacroSegmentsCount(value)
|
|
3108
3651
|
{
|
|
3109
3652
|
this.getJavaClass().setPdf417MacroSegmentsCountSync(value);
|
|
3110
3653
|
}
|
|
3111
3654
|
|
|
3655
|
+
/**
|
|
3656
|
+
* <p>
|
|
3657
|
+
* MacroPdf417 barcode file name (optional field).
|
|
3658
|
+
* MicroPDF417 barcode file name (optional field for Structured Append mode)
|
|
3659
|
+
* </p>
|
|
3660
|
+
*/
|
|
3661
|
+
getMacroPdf417FileName()
|
|
3662
|
+
{
|
|
3663
|
+
return this.getJavaClass().getMacroPdf417FileNameSync();
|
|
3664
|
+
}
|
|
3665
|
+
/**
|
|
3666
|
+
* <p>
|
|
3667
|
+
* MacroPdf417 barcode file name (optional field).
|
|
3668
|
+
* MicroPDF417 barcode file name (optional field for Structured Append mode)
|
|
3669
|
+
* </p>
|
|
3670
|
+
*/
|
|
3671
|
+
setMacroPdf417FileName(value)
|
|
3672
|
+
{
|
|
3673
|
+
this.getJavaClass().setMacroPdf417FileNameSync(value);
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3112
3676
|
/**
|
|
3113
3677
|
* Gets macro Pdf417 barcode file name.
|
|
3678
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileName().
|
|
3114
3679
|
*/
|
|
3115
3680
|
getPdf417MacroFileName()
|
|
3116
3681
|
{
|
|
@@ -3119,14 +3684,38 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3119
3684
|
|
|
3120
3685
|
/**
|
|
3121
3686
|
* Sets macro Pdf417 barcode file name.
|
|
3687
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileName().
|
|
3122
3688
|
*/
|
|
3123
3689
|
setPdf417MacroFileName(value)
|
|
3124
3690
|
{
|
|
3125
3691
|
this.getJavaClass().setPdf417MacroFileNameSync(value);
|
|
3126
3692
|
}
|
|
3127
3693
|
|
|
3694
|
+
/**
|
|
3695
|
+
* <p>
|
|
3696
|
+
* MacroPdf417 barcode time stamp (optional field).
|
|
3697
|
+
* MicroPDF417 barcode time stamp (optional field for Structured Append mode)
|
|
3698
|
+
* </p>
|
|
3699
|
+
*/
|
|
3700
|
+
getMacroPdf417TimeStamp()
|
|
3701
|
+
{
|
|
3702
|
+
return new Date(this.getJavaClass().getMacroPdf417TimeStampSync() * 1000);
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
/**
|
|
3706
|
+
* <p>
|
|
3707
|
+
* MacroPdf417 barcode time stamp (optional field).
|
|
3708
|
+
* MicroPDF417 barcode time stamp (optional field for Structured Append mode)
|
|
3709
|
+
* </p>
|
|
3710
|
+
*/
|
|
3711
|
+
setMacroPdf417TimeStamp(value)
|
|
3712
|
+
{
|
|
3713
|
+
this.getJavaClass().setMacroPdf417TimeStampSync((value.getTime() / 1000).toString());
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3128
3716
|
/**
|
|
3129
3717
|
* Gets macro Pdf417 barcode time stamp.
|
|
3718
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417TimeStamp().
|
|
3130
3719
|
*/
|
|
3131
3720
|
getPdf417MacroTimeStamp()
|
|
3132
3721
|
{
|
|
@@ -3135,14 +3724,38 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3135
3724
|
|
|
3136
3725
|
/**
|
|
3137
3726
|
* Sets macro Pdf417 barcode time stamp.
|
|
3727
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417TimeStamp().
|
|
3138
3728
|
*/
|
|
3139
3729
|
setPdf417MacroTimeStamp(value)
|
|
3140
3730
|
{
|
|
3141
3731
|
this.getJavaClass().setPdf417MacroTimeStampSync((value.getTime() / 1000).toString());
|
|
3142
3732
|
}
|
|
3143
3733
|
|
|
3734
|
+
/**
|
|
3735
|
+
* <p>
|
|
3736
|
+
* MacroPdf417 barcode sender name (optional field).
|
|
3737
|
+
* MicroPDF417 barcode sender name (optional field for Structured Append mode)
|
|
3738
|
+
* </p>
|
|
3739
|
+
*/
|
|
3740
|
+
getMacroPdf417Sender()
|
|
3741
|
+
{
|
|
3742
|
+
return this.getJavaClass().getMacroPdf417SenderSync();
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
/**
|
|
3746
|
+
* <p>
|
|
3747
|
+
* MacroPdf417 barcode sender name (optional field).
|
|
3748
|
+
* MicroPDF417 barcode sender name (optional field for Structured Append mode)
|
|
3749
|
+
* </p>
|
|
3750
|
+
*/
|
|
3751
|
+
setMacroPdf417Sender(value)
|
|
3752
|
+
{
|
|
3753
|
+
this.getJavaClass().setMacroPdf417SenderSync(value);
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3144
3756
|
/**
|
|
3145
3757
|
* Gets macro Pdf417 barcode sender name.
|
|
3758
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Sender().
|
|
3146
3759
|
*/
|
|
3147
3760
|
getPdf417MacroSender()
|
|
3148
3761
|
{
|
|
@@ -3151,14 +3764,38 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3151
3764
|
|
|
3152
3765
|
/**
|
|
3153
3766
|
* Sets macro Pdf417 barcode sender name.
|
|
3767
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Sender().
|
|
3154
3768
|
*/
|
|
3155
3769
|
setPdf417MacroSender(value)
|
|
3156
3770
|
{
|
|
3157
3771
|
this.getJavaClass().setPdf417MacroSenderSync(value);
|
|
3158
3772
|
}
|
|
3159
3773
|
|
|
3774
|
+
/**
|
|
3775
|
+
* <p>
|
|
3776
|
+
* MacroPdf417 barcode addressee name (optional field).
|
|
3777
|
+
* MicroPDF417 barcode addressee name (optional field for Structured Append mode)
|
|
3778
|
+
* </p>
|
|
3779
|
+
*/
|
|
3780
|
+
getMacroPdf417Addressee()
|
|
3781
|
+
{
|
|
3782
|
+
return this.getJavaClass().getMacroPdf417AddresseeSync();
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
/**
|
|
3786
|
+
* <p>
|
|
3787
|
+
* MacroPdf417 barcode addressee name (optional field).
|
|
3788
|
+
* MicroPDF417 barcode addressee name (optional field for Structured Append mode)
|
|
3789
|
+
* </p>
|
|
3790
|
+
*/
|
|
3791
|
+
setMacroPdf417Addressee(value)
|
|
3792
|
+
{
|
|
3793
|
+
this.getJavaClass().setMacroPdf417AddresseeSync(value);
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3160
3796
|
/**
|
|
3161
3797
|
* Gets macro Pdf417 barcode addressee name.
|
|
3798
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Addressee().
|
|
3162
3799
|
*/
|
|
3163
3800
|
getPdf417MacroAddressee()
|
|
3164
3801
|
{
|
|
@@ -3167,15 +3804,41 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3167
3804
|
|
|
3168
3805
|
/**
|
|
3169
3806
|
* Sets macro Pdf417 barcode addressee name.
|
|
3807
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Addressee().
|
|
3170
3808
|
*/
|
|
3171
3809
|
setPdf417MacroAddressee(value)
|
|
3172
3810
|
{
|
|
3173
3811
|
this.getJavaClass().setPdf417MacroAddresseeSync(value);
|
|
3174
3812
|
}
|
|
3175
3813
|
|
|
3814
|
+
/**
|
|
3815
|
+
* <p>
|
|
3816
|
+
* MacroPdf417 file size (optional field).
|
|
3817
|
+
* MicroPDF417 file size (optional field for Structured Append mode)
|
|
3818
|
+
* The file size field contains the size in bytes of the entire source file.
|
|
3819
|
+
* </p>
|
|
3820
|
+
*/
|
|
3821
|
+
getMacroPdf417FileSize()
|
|
3822
|
+
{
|
|
3823
|
+
return this.getJavaClass().getMacroPdf417FileSizeSync();
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
/**
|
|
3827
|
+
* <p>
|
|
3828
|
+
* MacroPdf417 file size (optional field).
|
|
3829
|
+
* MicroPDF417 file size (optional field for Structured Append mode)
|
|
3830
|
+
* The file size field contains the size in bytes of the entire source file.
|
|
3831
|
+
* </p>
|
|
3832
|
+
*/
|
|
3833
|
+
setMacroPdf417FileSize(value)
|
|
3834
|
+
{
|
|
3835
|
+
this.getJavaClass().setMacroPdf417FileSizeSync(value);
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3176
3838
|
/**
|
|
3177
3839
|
* Gets macro Pdf417 file size.<br>
|
|
3178
3840
|
* @return The file size field contains the size in bytes of the entire source file.
|
|
3841
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileSize().
|
|
3179
3842
|
*/
|
|
3180
3843
|
getPdf417MacroFileSize()
|
|
3181
3844
|
{
|
|
@@ -3185,15 +3848,41 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3185
3848
|
/**
|
|
3186
3849
|
* Sets macro Pdf417 file size.<br>
|
|
3187
3850
|
* @param value The file size field contains the size in bytes of the entire source file.
|
|
3851
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileSize().
|
|
3188
3852
|
*/
|
|
3189
3853
|
setPdf417MacroFileSize(value)
|
|
3190
3854
|
{
|
|
3191
3855
|
this.getJavaClass().setPdf417MacroFileSizeSync(value);
|
|
3192
3856
|
}
|
|
3193
3857
|
|
|
3858
|
+
/**
|
|
3859
|
+
* <p>
|
|
3860
|
+
* MacroPdf417 barcode checksum (optional field).
|
|
3861
|
+
* MicroPDF417 barcode checksum (optional field for Structured Append mode)
|
|
3862
|
+
* The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1
|
|
3863
|
+
* </p>
|
|
3864
|
+
*/
|
|
3865
|
+
getMacroPdf417Checksum()
|
|
3866
|
+
{
|
|
3867
|
+
return this.getJavaClass().getMacroPdf417ChecksumSync();
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
/**
|
|
3871
|
+
* <p>
|
|
3872
|
+
* MacroPdf417 barcode checksum (optional field).
|
|
3873
|
+
* MicroPDF417 barcode checksum (optional field for Structured Append mode)
|
|
3874
|
+
* The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1
|
|
3875
|
+
* </p>
|
|
3876
|
+
*/
|
|
3877
|
+
setMacroPdf417Checksum(value)
|
|
3878
|
+
{
|
|
3879
|
+
this.getJavaClass().setMacroPdf417ChecksumSync(value);
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3194
3882
|
/**
|
|
3195
3883
|
* Gets macro Pdf417 barcode checksum.<br>
|
|
3196
3884
|
* @return The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial.
|
|
3885
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Checksum().
|
|
3197
3886
|
*/
|
|
3198
3887
|
getPdf417MacroChecksum()
|
|
3199
3888
|
{
|
|
@@ -3203,16 +3892,40 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3203
3892
|
/**
|
|
3204
3893
|
* Sets macro Pdf417 barcode checksum.<br>
|
|
3205
3894
|
* @param value The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial.
|
|
3895
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Checksum().
|
|
3206
3896
|
*/
|
|
3207
3897
|
setPdf417MacroChecksum(value)
|
|
3208
3898
|
{
|
|
3209
3899
|
this.getJavaClass().setPdf417MacroChecksumSync(value);
|
|
3210
3900
|
}
|
|
3211
3901
|
|
|
3902
|
+
/**
|
|
3903
|
+
* <p>
|
|
3904
|
+
* Identifies Pdf417 encode mode.
|
|
3905
|
+
* Default value: Auto.
|
|
3906
|
+
* </p>
|
|
3907
|
+
*/
|
|
3908
|
+
getEncodeMode()
|
|
3909
|
+
{
|
|
3910
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
/**
|
|
3914
|
+
* <p>
|
|
3915
|
+
* Identifies Pdf417 encode mode.
|
|
3916
|
+
* Default value: Auto.
|
|
3917
|
+
* </p>
|
|
3918
|
+
*/
|
|
3919
|
+
setEncodeMode(value)
|
|
3920
|
+
{
|
|
3921
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3212
3924
|
/**
|
|
3213
3925
|
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details<br>
|
|
3214
3926
|
* about the used references for encoding the data in the symbol.<br>
|
|
3215
3927
|
* Current implementation consists all well known charset encodings.
|
|
3928
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding().
|
|
3216
3929
|
*/
|
|
3217
3930
|
getPdf417ECIEncoding()
|
|
3218
3931
|
{
|
|
@@ -3223,6 +3936,7 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3223
3936
|
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details<br>
|
|
3224
3937
|
* about the used references for encoding the data in the symbol.<br>
|
|
3225
3938
|
* Current implementation consists all well known charset encodings.
|
|
3939
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding().
|
|
3226
3940
|
*/
|
|
3227
3941
|
setPdf417ECIEncoding(value)
|
|
3228
3942
|
{
|
|
@@ -3230,7 +3944,27 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3230
3944
|
}
|
|
3231
3945
|
|
|
3232
3946
|
/**
|
|
3947
|
+
* <p>
|
|
3948
|
+
* Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields.
|
|
3949
|
+
* </p>
|
|
3950
|
+
*/
|
|
3951
|
+
getMacroPdf417ECIEncoding()
|
|
3952
|
+
{
|
|
3953
|
+
return this.getJavaClass().getMacroPdf417ECIEncodingSync();
|
|
3954
|
+
}
|
|
3955
|
+
/**
|
|
3956
|
+
* <p>
|
|
3233
3957
|
* Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields.
|
|
3958
|
+
* </p>
|
|
3959
|
+
*/
|
|
3960
|
+
setMacroPdf417ECIEncoding(value)
|
|
3961
|
+
{
|
|
3962
|
+
this.getJavaClass().setMacroPdf417ECIEncodingSync(value);
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
/**
|
|
3966
|
+
* Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields.
|
|
3967
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417ECIEncoding().
|
|
3234
3968
|
*/
|
|
3235
3969
|
getPdf417MacroECIEncoding()
|
|
3236
3970
|
{
|
|
@@ -3239,15 +3973,39 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3239
3973
|
|
|
3240
3974
|
/**
|
|
3241
3975
|
* Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields.
|
|
3976
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417ECIEncoding().
|
|
3242
3977
|
*/
|
|
3243
3978
|
setPdf417MacroECIEncoding(value)
|
|
3244
3979
|
{
|
|
3245
3980
|
this.getJavaClass().setPdf417MacroECIEncodingSync(value);
|
|
3246
3981
|
}
|
|
3247
3982
|
|
|
3983
|
+
/**
|
|
3984
|
+
* <p>
|
|
3985
|
+
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment.
|
|
3986
|
+
* Applied only for Macro PDF417.
|
|
3987
|
+
* </p>
|
|
3988
|
+
*/
|
|
3989
|
+
getMacroPdf417Terminator()
|
|
3990
|
+
{
|
|
3991
|
+
return this.getJavaClass().getMacroPdf417TerminatorSync();
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
/**
|
|
3995
|
+
* <p>
|
|
3996
|
+
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment.
|
|
3997
|
+
* Applied only for Macro PDF417.
|
|
3998
|
+
* </p>
|
|
3999
|
+
*/
|
|
4000
|
+
setMacroPdf417Terminator(value)
|
|
4001
|
+
{
|
|
4002
|
+
this.getJavaClass().setMacroPdf417TerminatorSync(value);
|
|
4003
|
+
}
|
|
4004
|
+
|
|
3248
4005
|
/**
|
|
3249
4006
|
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment.<br>
|
|
3250
4007
|
* Applied only for Macro PDF417.
|
|
4008
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Terminator().
|
|
3251
4009
|
*/
|
|
3252
4010
|
getPdf417MacroTerminator()
|
|
3253
4011
|
{
|
|
@@ -3257,6 +4015,7 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3257
4015
|
/**
|
|
3258
4016
|
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment.<br>
|
|
3259
4017
|
* Applied only for Macro PDF417.
|
|
4018
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Terminator().
|
|
3260
4019
|
*/
|
|
3261
4020
|
setPdf417MacroTerminator(value)
|
|
3262
4021
|
{
|
|
@@ -3283,6 +4042,26 @@ class Pdf417Parameters extends joint.BaseJavaClass
|
|
|
3283
4042
|
this.getJavaClass().setReaderInitializationSync(value);
|
|
3284
4043
|
}
|
|
3285
4044
|
|
|
4045
|
+
/**
|
|
4046
|
+
* <p>
|
|
4047
|
+
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
4048
|
+
* </p>
|
|
4049
|
+
*/
|
|
4050
|
+
getStructuredAppendModeBarcodeId()
|
|
4051
|
+
{
|
|
4052
|
+
return this.getJavaClass().getStructuredAppendModeBarcodeIdSync();
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
/**
|
|
4056
|
+
* <p>
|
|
4057
|
+
* Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1.
|
|
4058
|
+
* </p>
|
|
4059
|
+
*/
|
|
4060
|
+
setStructuredAppendModeBarcodeId(value)
|
|
4061
|
+
{
|
|
4062
|
+
this.getJavaClass().setStructuredAppendModeBarcodeIdSync(value);
|
|
4063
|
+
}
|
|
4064
|
+
|
|
3286
4065
|
/**
|
|
3287
4066
|
* <p>
|
|
3288
4067
|
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes.
|
|
@@ -3794,8 +4573,32 @@ class MaxiCodeParameters extends joint.BaseJavaClass
|
|
|
3794
4573
|
{
|
|
3795
4574
|
}
|
|
3796
4575
|
|
|
4576
|
+
/**
|
|
4577
|
+
* <p>
|
|
4578
|
+
* Gets a MaxiCode encode mode.
|
|
4579
|
+
* </p>
|
|
4580
|
+
* @return a MaxiCode encode mode.
|
|
4581
|
+
*/
|
|
4582
|
+
getMode()
|
|
4583
|
+
{
|
|
4584
|
+
return this.getJavaClass().getModeSync();
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
/**
|
|
4588
|
+
* <p>
|
|
4589
|
+
* Sets a MaxiCode encode mode.
|
|
4590
|
+
* </p>
|
|
4591
|
+
* @param value a MaxiCode encode mode.
|
|
4592
|
+
*/
|
|
4593
|
+
setMode(value)
|
|
4594
|
+
{
|
|
4595
|
+
this.getJavaClass().setModeSync(value);
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
|
|
3797
4599
|
/**
|
|
3798
4600
|
* Gets a MaxiCode encode mode.
|
|
4601
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getMode().
|
|
3799
4602
|
*/
|
|
3800
4603
|
getMaxiCodeMode()
|
|
3801
4604
|
{
|
|
@@ -3804,6 +4607,7 @@ class MaxiCodeParameters extends joint.BaseJavaClass
|
|
|
3804
4607
|
|
|
3805
4608
|
/**
|
|
3806
4609
|
* Sets a MaxiCode encode mode.
|
|
4610
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setMode().
|
|
3807
4611
|
*/
|
|
3808
4612
|
setMaxiCodeMode(maxiCodeMode)
|
|
3809
4613
|
{
|
|
@@ -3812,14 +4616,40 @@ class MaxiCodeParameters extends joint.BaseJavaClass
|
|
|
3812
4616
|
|
|
3813
4617
|
/**
|
|
3814
4618
|
* Gets a MaxiCode encode mode.
|
|
4619
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
3815
4620
|
*/
|
|
3816
4621
|
getMaxiCodeEncodeMode()
|
|
3817
4622
|
{
|
|
3818
4623
|
return this.getJavaClass().getMaxiCodeEncodeModeSync();
|
|
3819
4624
|
}
|
|
3820
4625
|
|
|
4626
|
+
/**
|
|
4627
|
+
* <p>
|
|
4628
|
+
* Gets a MaxiCode encode mode.
|
|
4629
|
+
* Default value: Auto.
|
|
4630
|
+
* </p>
|
|
4631
|
+
* @return a MaxiCode encode mode.
|
|
4632
|
+
*/
|
|
4633
|
+
getEncodeMode()
|
|
4634
|
+
{
|
|
4635
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4638
|
+
/**
|
|
4639
|
+
* <p>
|
|
4640
|
+
* Sets a MaxiCode encode mode.
|
|
4641
|
+
* Default value: Auto.
|
|
4642
|
+
* </p>
|
|
4643
|
+
* @param value a MaxiCode encode mode.
|
|
4644
|
+
*/
|
|
4645
|
+
setEncodeMode(value)
|
|
4646
|
+
{
|
|
4647
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
4648
|
+
}
|
|
4649
|
+
|
|
3821
4650
|
/**
|
|
3822
4651
|
* Sets a MaxiCode encode mode.
|
|
4652
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
3823
4653
|
*/
|
|
3824
4654
|
setMaxiCodeEncodeMode(value)
|
|
3825
4655
|
{
|
|
@@ -3848,26 +4678,82 @@ class MaxiCodeParameters extends joint.BaseJavaClass
|
|
|
3848
4678
|
* Gets a MaxiCode barcode id in structured append mode.<br>
|
|
3849
4679
|
* ID must be a value between 1 and 8.<br>
|
|
3850
4680
|
* Default value: 0
|
|
4681
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId().
|
|
3851
4682
|
*/
|
|
3852
4683
|
getMaxiCodeStructuredAppendModeBarcodeId()
|
|
3853
4684
|
{
|
|
3854
4685
|
return this.getJavaClass().getMaxiCodeStructuredAppendModeBarcodeIdSync();
|
|
3855
4686
|
}
|
|
3856
4687
|
|
|
4688
|
+
/**
|
|
4689
|
+
* <p>
|
|
4690
|
+
* Gets a MaxiCode barcode id in structured append mode.
|
|
4691
|
+
* ID must be a value between 1 and 8.
|
|
4692
|
+
* Default value: 0
|
|
4693
|
+
* </p>
|
|
4694
|
+
* @return a MaxiCode barcode id in structured append mode.
|
|
4695
|
+
*/
|
|
4696
|
+
getStructuredAppendModeBarcodeId()
|
|
4697
|
+
{
|
|
4698
|
+
return this.getJavaClass().getStructuredAppendModeBarcodeIdSync();
|
|
4699
|
+
}
|
|
4700
|
+
|
|
4701
|
+
/**
|
|
4702
|
+
* <p>
|
|
4703
|
+
* Sets a MaxiCode barcode id in structured append mode.
|
|
4704
|
+
* ID must be a value between 1 and 8.
|
|
4705
|
+
* Default value: 0
|
|
4706
|
+
* </p>
|
|
4707
|
+
* @param value a MaxiCode barcode id in structured append mode.
|
|
4708
|
+
*/
|
|
4709
|
+
setStructuredAppendModeBarcodeId(value)
|
|
4710
|
+
{
|
|
4711
|
+
this.getJavaClass().setStructuredAppendModeBarcodeIdSync(value);
|
|
4712
|
+
}
|
|
4713
|
+
|
|
3857
4714
|
/**
|
|
3858
4715
|
* Sets a MaxiCode barcode id in structured append mode.<br>
|
|
3859
4716
|
* ID must be a value between 1 and 8.<br>
|
|
3860
4717
|
* Default value: 0
|
|
4718
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodeId().
|
|
3861
4719
|
*/
|
|
3862
4720
|
setMaxiCodeStructuredAppendModeBarcodeId(maxiCodeStructuredAppendModeBarcodeId)
|
|
3863
4721
|
{
|
|
3864
4722
|
this.getJavaClass().setMaxiCodeStructuredAppendModeBarcodeIdSync(maxiCodeStructuredAppendModeBarcodeId);
|
|
3865
4723
|
}
|
|
3866
4724
|
|
|
4725
|
+
/**
|
|
4726
|
+
* <p>
|
|
4727
|
+
* Gets a MaxiCode barcodes count in structured append mode.
|
|
4728
|
+
* Count number must be a value between 2 and 8 (maximum barcodes count).
|
|
4729
|
+
* Default value: -1
|
|
4730
|
+
* </p>
|
|
4731
|
+
* @return a MaxiCode barcodes count in structured append mode.
|
|
4732
|
+
*/
|
|
4733
|
+
getStructuredAppendModeBarcodesCount()
|
|
4734
|
+
{
|
|
4735
|
+
return this.getJavaClass().getStructuredAppendModeBarcodesCountSync();
|
|
4736
|
+
}
|
|
4737
|
+
|
|
4738
|
+
/**
|
|
4739
|
+
* <p>
|
|
4740
|
+
* Sets a MaxiCode barcodes count in structured append mode.
|
|
4741
|
+
* Count number must be a value between 2 and 8 (maximum barcodes count).
|
|
4742
|
+
* Default value: -1
|
|
4743
|
+
* </p>
|
|
4744
|
+
* @param value a MaxiCode barcodes count in structured append mode.
|
|
4745
|
+
*/
|
|
4746
|
+
setStructuredAppendModeBarcodesCount(value)
|
|
4747
|
+
{
|
|
4748
|
+
this.getJavaClass().setStructuredAppendModeBarcodesCountSync(value);
|
|
4749
|
+
}
|
|
4750
|
+
|
|
4751
|
+
|
|
3867
4752
|
/**
|
|
3868
4753
|
* Gets a MaxiCode barcodes count in structured append mode.<br>
|
|
3869
4754
|
* Count number must be a value between 2 and 8 (maximum barcodes count).<br>
|
|
3870
4755
|
* Default value: -1
|
|
4756
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount().
|
|
3871
4757
|
*/
|
|
3872
4758
|
getMaxiCodeStructuredAppendModeBarcodesCount()
|
|
3873
4759
|
{
|
|
@@ -3878,6 +4764,7 @@ class MaxiCodeParameters extends joint.BaseJavaClass
|
|
|
3878
4764
|
* Sets a MaxiCode barcodes count in structured append mode.<br>
|
|
3879
4765
|
* Count number must be a value between 2 and 8 (maximum barcodes count).<br>
|
|
3880
4766
|
* Default value: -1
|
|
4767
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodesCount().
|
|
3881
4768
|
*/
|
|
3882
4769
|
setMaxiCodeStructuredAppendModeBarcodesCount(maxiCodeStructuredAppendModeBarcodesCount)
|
|
3883
4770
|
{
|
|
@@ -3931,6 +4818,31 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
3931
4818
|
* Gets a Aztec encode mode.
|
|
3932
4819
|
* Default value: Auto.
|
|
3933
4820
|
* </p>
|
|
4821
|
+
* @return a Aztec encode mode.
|
|
4822
|
+
*/
|
|
4823
|
+
getEncodeMode()
|
|
4824
|
+
{
|
|
4825
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
/**
|
|
4829
|
+
* <p>
|
|
4830
|
+
* Sets a Aztec encode mode.
|
|
4831
|
+
* Default value: Auto.
|
|
4832
|
+
* </p>
|
|
4833
|
+
* @param value a Aztec encode mode.
|
|
4834
|
+
*/
|
|
4835
|
+
setEncodeMode(value)
|
|
4836
|
+
{
|
|
4837
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4840
|
+
/**
|
|
4841
|
+
* <p>
|
|
4842
|
+
* Gets a Aztec encode mode.
|
|
4843
|
+
* Default value: Auto.
|
|
4844
|
+
* </p>
|
|
4845
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
3934
4846
|
*/
|
|
3935
4847
|
getAztecEncodeMode()
|
|
3936
4848
|
{
|
|
@@ -3942,6 +4854,7 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
3942
4854
|
* Sets a Aztec encode mode.
|
|
3943
4855
|
* Default value: Auto.
|
|
3944
4856
|
* </p>
|
|
4857
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
3945
4858
|
*/
|
|
3946
4859
|
setAztecEncodeMode(value)
|
|
3947
4860
|
{
|
|
@@ -4042,6 +4955,29 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
4042
4955
|
* Value should between 5 to 95.
|
|
4043
4956
|
* </p>
|
|
4044
4957
|
*/
|
|
4958
|
+
getErrorLevel()
|
|
4959
|
+
{
|
|
4960
|
+
return this.getJavaClass().getErrorLevelSync();
|
|
4961
|
+
}
|
|
4962
|
+
|
|
4963
|
+
/**
|
|
4964
|
+
* <p>
|
|
4965
|
+
* Level of error correction of Aztec types of barcode.
|
|
4966
|
+
* Value should between 5 to 95.
|
|
4967
|
+
* </p>
|
|
4968
|
+
*/
|
|
4969
|
+
setErrorLevel(value)
|
|
4970
|
+
{
|
|
4971
|
+
this.getJavaClass().setErrorLevelSync(value);
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
/**
|
|
4975
|
+
* <p>
|
|
4976
|
+
* Level of error correction of Aztec types of barcode.
|
|
4977
|
+
* Value should between 5 to 95.
|
|
4978
|
+
* </p>
|
|
4979
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel().
|
|
4980
|
+
*/
|
|
4045
4981
|
getAztecErrorLevel()
|
|
4046
4982
|
{
|
|
4047
4983
|
return this.getJavaClass().getAztecErrorLevelSync();
|
|
@@ -4052,6 +4988,7 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
4052
4988
|
* Level of error correction of Aztec types of barcode.
|
|
4053
4989
|
* Value should between 5 to 95.
|
|
4054
4990
|
* </p>
|
|
4991
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel().
|
|
4055
4992
|
*/
|
|
4056
4993
|
setAztecErrorLevel(value)
|
|
4057
4994
|
{
|
|
@@ -4063,6 +5000,31 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
4063
5000
|
* Gets a Aztec Symbol mode.
|
|
4064
5001
|
* Default value: AztecSymbolMode.Auto.
|
|
4065
5002
|
* </p>
|
|
5003
|
+
* @return a Aztec Symbol mode.
|
|
5004
|
+
*/
|
|
5005
|
+
getSymbolMode()
|
|
5006
|
+
{
|
|
5007
|
+
return this.getJavaClass().getSymbolModeSync();
|
|
5008
|
+
}
|
|
5009
|
+
|
|
5010
|
+
/**
|
|
5011
|
+
* <p>
|
|
5012
|
+
* Sets a Aztec Symbol mode.
|
|
5013
|
+
* Default value: AztecSymbolMode.Auto.
|
|
5014
|
+
* </p>
|
|
5015
|
+
* @param value a Aztec Symbol mode.
|
|
5016
|
+
*/
|
|
5017
|
+
setSymbolMode(value)
|
|
5018
|
+
{
|
|
5019
|
+
this.getJavaClass().setSymbolModeSync(value);
|
|
5020
|
+
}
|
|
5021
|
+
|
|
5022
|
+
/**
|
|
5023
|
+
* <p>
|
|
5024
|
+
* Gets a Aztec Symbol mode.
|
|
5025
|
+
* Default value: AztecSymbolMode.Auto.
|
|
5026
|
+
* </p>
|
|
5027
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getSymbolMode().
|
|
4066
5028
|
*/
|
|
4067
5029
|
getAztecSymbolMode()
|
|
4068
5030
|
{
|
|
@@ -4074,6 +5036,7 @@ class AztecParameters extends joint.BaseJavaClass
|
|
|
4074
5036
|
* Sets a Aztec Symbol mode.
|
|
4075
5037
|
* Default value: AztecSymbolMode.Auto.
|
|
4076
5038
|
* </p>
|
|
5039
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setSymbolMode().
|
|
4077
5040
|
*/
|
|
4078
5041
|
setAztecSymbolMode(value)
|
|
4079
5042
|
{
|
|
@@ -4174,11 +5137,40 @@ class CodabarParameters extends joint.BaseJavaClass
|
|
|
4174
5137
|
{
|
|
4175
5138
|
}
|
|
4176
5139
|
|
|
5140
|
+
/**
|
|
5141
|
+
* <p>
|
|
5142
|
+
* Get the checksum algorithm for Codabar barcodes.
|
|
5143
|
+
* Default value: CodabarChecksumMode.Mod16.
|
|
5144
|
+
* To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum.
|
|
5145
|
+
* See {@code ChecksumMode}({@link #getChecksumMode}/{@link #setChecksumMode}).
|
|
5146
|
+
* </p>
|
|
5147
|
+
* @return the checksum algorithm for Codabar barcodes.
|
|
5148
|
+
*/
|
|
5149
|
+
getChecksumMode()
|
|
5150
|
+
{
|
|
5151
|
+
return this.getJavaClass().getChecksumMode().getValueSync();
|
|
5152
|
+
}
|
|
5153
|
+
|
|
5154
|
+
/**
|
|
5155
|
+
* <p>
|
|
5156
|
+
* Set the checksum algorithm for Codabar barcodes.
|
|
5157
|
+
* Default value: CodabarChecksumMode.Mod16.
|
|
5158
|
+
* To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum.
|
|
5159
|
+
* See {@code ChecksumMode}({@link #getChecksumMode}/{@link #setChecksumMode}).
|
|
5160
|
+
* </p>
|
|
5161
|
+
* @param value the checksum algorithm for Codabar barcodes.
|
|
5162
|
+
*/
|
|
5163
|
+
setChecksumMode(value)
|
|
5164
|
+
{
|
|
5165
|
+
this.getJavaClass().setChecksumModeSync(value);
|
|
5166
|
+
}
|
|
5167
|
+
|
|
4177
5168
|
/**
|
|
4178
5169
|
* Get the checksum algorithm for Codabar barcodes.<br>
|
|
4179
5170
|
* Default value: CodabarChecksumMode.MOD_16.<br>
|
|
4180
5171
|
* To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum.<br>
|
|
4181
5172
|
* See CodabarChecksumMode.
|
|
5173
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getChecksumMode().
|
|
4182
5174
|
*/
|
|
4183
5175
|
getCodabarChecksumMode()
|
|
4184
5176
|
{
|
|
@@ -4190,15 +5182,39 @@ class CodabarParameters extends joint.BaseJavaClass
|
|
|
4190
5182
|
* Default value: CodabarChecksumMode.MOD_16.<br>
|
|
4191
5183
|
* To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum.<br>
|
|
4192
5184
|
* See CodabarChecksumMode.
|
|
5185
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setChecksumMode().
|
|
4193
5186
|
*/
|
|
4194
5187
|
setCodabarChecksumMode(value)
|
|
4195
5188
|
{
|
|
4196
5189
|
this.getJavaClass().setCodabarChecksumModeSync(value);
|
|
4197
5190
|
}
|
|
4198
5191
|
|
|
5192
|
+
/**
|
|
5193
|
+
* <p>
|
|
5194
|
+
* Start symbol (character) of Codabar symbology.
|
|
5195
|
+
* Default value: CodabarSymbol.A
|
|
5196
|
+
* </p>
|
|
5197
|
+
*/
|
|
5198
|
+
getStartSymbol()
|
|
5199
|
+
{
|
|
5200
|
+
return this.getJavaClass().getStartSymbolSync();
|
|
5201
|
+
}
|
|
5202
|
+
|
|
5203
|
+
/**
|
|
5204
|
+
* <p>
|
|
5205
|
+
* Start symbol (character) of Codabar symbology.
|
|
5206
|
+
* Default value: CodabarSymbol.A
|
|
5207
|
+
* </p>
|
|
5208
|
+
*/
|
|
5209
|
+
setStartSymbol(value)
|
|
5210
|
+
{
|
|
5211
|
+
this.getJavaClass().setStartSymbolSync(value);
|
|
5212
|
+
}
|
|
5213
|
+
|
|
4199
5214
|
/**
|
|
4200
5215
|
* Start symbol (character) of Codabar symbology.<br>
|
|
4201
5216
|
* Default value: CodabarSymbol.A
|
|
5217
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStartSymbol().
|
|
4202
5218
|
*/
|
|
4203
5219
|
getCodabarStartSymbol()
|
|
4204
5220
|
{
|
|
@@ -4208,15 +5224,39 @@ class CodabarParameters extends joint.BaseJavaClass
|
|
|
4208
5224
|
/**
|
|
4209
5225
|
* Start symbol (character) of Codabar symbology.<br>
|
|
4210
5226
|
* Default value: CodabarSymbol.A
|
|
5227
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStartSymbol().
|
|
4211
5228
|
*/
|
|
4212
5229
|
setCodabarStartSymbol(value)
|
|
4213
5230
|
{
|
|
4214
5231
|
this.getJavaClass().setCodabarStartSymbolSync(value);
|
|
4215
5232
|
}
|
|
4216
5233
|
|
|
5234
|
+
/**
|
|
5235
|
+
* <p>
|
|
5236
|
+
* Stop symbol (character) of Codabar symbology.
|
|
5237
|
+
* Default value: CodabarSymbol.A
|
|
5238
|
+
* </p>
|
|
5239
|
+
*/
|
|
5240
|
+
getStopSymbol()
|
|
5241
|
+
{
|
|
5242
|
+
return this.getJavaClass().getStopSymbolSync();
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5245
|
+
/**
|
|
5246
|
+
* <p>
|
|
5247
|
+
* Stop symbol (character) of Codabar symbology.
|
|
5248
|
+
* Default value: CodabarSymbol.A
|
|
5249
|
+
* </p>
|
|
5250
|
+
*/
|
|
5251
|
+
setStopSymbol(value)
|
|
5252
|
+
{
|
|
5253
|
+
this.getJavaClass().setStopSymbolSync(value);
|
|
5254
|
+
}
|
|
5255
|
+
|
|
4217
5256
|
/**
|
|
4218
5257
|
* Stop symbol (character) of Codabar symbology.<br>
|
|
4219
5258
|
* Default value: CodabarSymbol.A
|
|
5259
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getStopSymbol().
|
|
4220
5260
|
*/
|
|
4221
5261
|
getCodabarStopSymbol()
|
|
4222
5262
|
{
|
|
@@ -4226,6 +5266,7 @@ class CodabarParameters extends joint.BaseJavaClass
|
|
|
4226
5266
|
/**
|
|
4227
5267
|
* Stop symbol (character) of Codabar symbology.<br>
|
|
4228
5268
|
* Default value: CodabarSymbol.A
|
|
5269
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setStopSymbol().
|
|
4229
5270
|
*/
|
|
4230
5271
|
setCodabarStopSymbol(value)
|
|
4231
5272
|
{
|
|
@@ -4763,6 +5804,31 @@ class Code128Parameters extends joint.BaseJavaClass
|
|
|
4763
5804
|
* Gets a Code128 encode mode.
|
|
4764
5805
|
* Default value: Code128EncodeMode.Auto
|
|
4765
5806
|
* </p>
|
|
5807
|
+
* @return a Code128 encode mode.
|
|
5808
|
+
*/
|
|
5809
|
+
getEncodeMode()
|
|
5810
|
+
{
|
|
5811
|
+
return this.getJavaClass().getEncodeMode().getValueSync();
|
|
5812
|
+
}
|
|
5813
|
+
|
|
5814
|
+
/**
|
|
5815
|
+
* <p>
|
|
5816
|
+
* Sets a Code128 encode mode.
|
|
5817
|
+
* Default value: Code128EncodeMode.Auto
|
|
5818
|
+
* </p>
|
|
5819
|
+
* @param value a Code128 encode mode.
|
|
5820
|
+
*/
|
|
5821
|
+
setEncodeMode(value)
|
|
5822
|
+
{
|
|
5823
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
5824
|
+
}
|
|
5825
|
+
|
|
5826
|
+
/**
|
|
5827
|
+
* <p>
|
|
5828
|
+
* Gets a Code128 encode mode.
|
|
5829
|
+
* Default value: Code128EncodeMode.Auto
|
|
5830
|
+
* </p>
|
|
5831
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
4766
5832
|
*/
|
|
4767
5833
|
getCode128EncodeMode()
|
|
4768
5834
|
{
|
|
@@ -4774,6 +5840,7 @@ class Code128Parameters extends joint.BaseJavaClass
|
|
|
4774
5840
|
* Sets a Code128 encode mode.
|
|
4775
5841
|
* Default value: Code128EncodeMode.Auto
|
|
4776
5842
|
* </p>
|
|
5843
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
4777
5844
|
*/
|
|
4778
5845
|
setCode128EncodeMode(value)
|
|
4779
5846
|
{
|
|
@@ -4807,12 +5874,37 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4807
5874
|
{
|
|
4808
5875
|
}
|
|
4809
5876
|
|
|
5877
|
+
/**
|
|
5878
|
+
* <p>
|
|
5879
|
+
* Version of HanXin Code.
|
|
5880
|
+
* From Version01 to Version84 for Han Xin code.
|
|
5881
|
+
* Default value is Version.Auto.
|
|
5882
|
+
* </p>
|
|
5883
|
+
*/
|
|
5884
|
+
getVersion()
|
|
5885
|
+
{
|
|
5886
|
+
return this.getJavaClass().getVersionSync();
|
|
5887
|
+
}
|
|
5888
|
+
|
|
5889
|
+
/**
|
|
5890
|
+
* <p>
|
|
5891
|
+
* Version of HanXin Code.
|
|
5892
|
+
* From Version01 to Version84 for Han Xin code.
|
|
5893
|
+
* Default value is Version.Auto.
|
|
5894
|
+
* </p>
|
|
5895
|
+
*/
|
|
5896
|
+
setVersion(value)
|
|
5897
|
+
{
|
|
5898
|
+
this.getJavaClass().setVersionSync(value);
|
|
5899
|
+
}
|
|
5900
|
+
|
|
4810
5901
|
/**
|
|
4811
5902
|
* <p>
|
|
4812
5903
|
* Version of HanXin Code.
|
|
4813
5904
|
* From Version01 to Version84 for Han Xin code.
|
|
4814
5905
|
* Default value is HanXinVersion.Auto.
|
|
4815
5906
|
* </p>
|
|
5907
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getVersion().
|
|
4816
5908
|
*/
|
|
4817
5909
|
getHanXinVersion()
|
|
4818
5910
|
{
|
|
@@ -4825,17 +5917,41 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4825
5917
|
* From Version01 to Version84 for Han Xin code.
|
|
4826
5918
|
* Default value is HanXinVersion.Auto.
|
|
4827
5919
|
* </p>
|
|
5920
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setVersion().
|
|
4828
5921
|
*/
|
|
4829
5922
|
setHanXinVersion(value)
|
|
4830
5923
|
{
|
|
4831
5924
|
this.getJavaClass().setHanXinVersionSync(value);
|
|
4832
5925
|
}
|
|
4833
5926
|
|
|
5927
|
+
/**
|
|
5928
|
+
* <p>
|
|
5929
|
+
* Level of Reed-Solomon error correction for Han Xin barcode.
|
|
5930
|
+
* From low to high: L1, L2, L3, L4. see ErrorLevel.
|
|
5931
|
+
* </p>
|
|
5932
|
+
*/
|
|
5933
|
+
getErrorLevel()
|
|
5934
|
+
{
|
|
5935
|
+
return this.getJavaClass().getErrorLevel().getValueSync();
|
|
5936
|
+
}
|
|
5937
|
+
|
|
5938
|
+
/**
|
|
5939
|
+
* <p>
|
|
5940
|
+
* Level of Reed-Solomon error correction for Han Xin barcode.
|
|
5941
|
+
* From low to high: L1, L2, L3, L4. see ErrorLevel.
|
|
5942
|
+
* </p>
|
|
5943
|
+
*/
|
|
5944
|
+
setErrorLevel(value)
|
|
5945
|
+
{
|
|
5946
|
+
this.getJavaClass().setErrorLevelSync(value);
|
|
5947
|
+
}
|
|
5948
|
+
|
|
4834
5949
|
/**
|
|
4835
5950
|
* <p>
|
|
4836
5951
|
* Level of Reed-Solomon error correction for Han Xin barcode.
|
|
4837
5952
|
* From low to high: L1, L2, L3, L4. see HanXinErrorLevel.
|
|
4838
5953
|
* </p>
|
|
5954
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel().
|
|
4839
5955
|
*/
|
|
4840
5956
|
getHanXinErrorLevel()
|
|
4841
5957
|
{
|
|
@@ -4847,17 +5963,40 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4847
5963
|
* Level of Reed-Solomon error correction for Han Xin barcode.
|
|
4848
5964
|
* From low to high: L1, L2, L3, L4. see HanXinErrorLevel.
|
|
4849
5965
|
* </p>
|
|
5966
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel().
|
|
4850
5967
|
*/
|
|
4851
5968
|
setHanXinErrorLevel(value)
|
|
4852
5969
|
{
|
|
4853
5970
|
this.getJavaClass().setHanXinErrorLevelSync(value);
|
|
4854
5971
|
}
|
|
4855
5972
|
|
|
5973
|
+
/**
|
|
5974
|
+
* <p>
|
|
5975
|
+
* HanXin encoding mode.
|
|
5976
|
+
* Default value: EncodeMode.Mixed.
|
|
5977
|
+
* </p>
|
|
5978
|
+
*/
|
|
5979
|
+
getEncodeMode()
|
|
5980
|
+
{
|
|
5981
|
+
return this.getJavaClass().getEncodeModeSync();
|
|
5982
|
+
}
|
|
5983
|
+
/**
|
|
5984
|
+
* <p>
|
|
5985
|
+
* HanXin encoding mode.
|
|
5986
|
+
* Default value: EncodeMode.Mixed.
|
|
5987
|
+
* </p>
|
|
5988
|
+
*/
|
|
5989
|
+
setEncodeMode(value)
|
|
5990
|
+
{
|
|
5991
|
+
this.getJavaClass().setEncodeModeSync(value);
|
|
5992
|
+
}
|
|
5993
|
+
|
|
4856
5994
|
/**
|
|
4857
5995
|
* <p>
|
|
4858
5996
|
* HanXin encoding mode.
|
|
4859
5997
|
* Default value: HanXinEncodeMode.Mixed.
|
|
4860
5998
|
* </p>
|
|
5999
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode().
|
|
4861
6000
|
*/
|
|
4862
6001
|
getHanXinEncodeMode()
|
|
4863
6002
|
{
|
|
@@ -4869,10 +6008,35 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4869
6008
|
* HanXin encoding mode.
|
|
4870
6009
|
* Default value: HanXinEncodeMode.Mixed.
|
|
4871
6010
|
* </p>
|
|
6011
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode().
|
|
4872
6012
|
*/
|
|
4873
6013
|
setHanXinEncodeMode(value)
|
|
4874
6014
|
{
|
|
4875
|
-
this.getJavaClass().
|
|
6015
|
+
this.getJavaClass().setEncodeMode(value);
|
|
6016
|
+
}
|
|
6017
|
+
|
|
6018
|
+
/**
|
|
6019
|
+
* <p>
|
|
6020
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
6021
|
+
* about the used references for encoding the data in the symbol.
|
|
6022
|
+
* Current implementation contains all well known charset encodings.
|
|
6023
|
+
* </p>
|
|
6024
|
+
*/
|
|
6025
|
+
getECIEncoding()
|
|
6026
|
+
{
|
|
6027
|
+
return this.getJavaClass().getECIEncodingSync();
|
|
6028
|
+
}
|
|
6029
|
+
|
|
6030
|
+
/**
|
|
6031
|
+
* <p>
|
|
6032
|
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details
|
|
6033
|
+
* about the used references for encoding the data in the symbol.
|
|
6034
|
+
* Current implementation contains all well known charset encodings.
|
|
6035
|
+
* </p>
|
|
6036
|
+
*/
|
|
6037
|
+
setECIEncoding( value)
|
|
6038
|
+
{
|
|
6039
|
+
this.getJavaClass().setECIEncodingSync(value);
|
|
4876
6040
|
}
|
|
4877
6041
|
|
|
4878
6042
|
/**
|
|
@@ -4881,10 +6045,11 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4881
6045
|
* about the used references for encoding the data in the symbol.
|
|
4882
6046
|
* Current implementation consists all well known charset encodings.
|
|
4883
6047
|
* </p>
|
|
6048
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding().
|
|
4884
6049
|
*/
|
|
4885
6050
|
getHanXinECIEncoding()
|
|
4886
6051
|
{
|
|
4887
|
-
return this.getJavaClass().
|
|
6052
|
+
return this.getJavaClass().setECIEncodingSync();
|
|
4888
6053
|
}
|
|
4889
6054
|
|
|
4890
6055
|
/**
|
|
@@ -4893,6 +6058,7 @@ class HanXinParameters extends joint.BaseJavaClass
|
|
|
4893
6058
|
* about the used references for encoding the data in the symbol.
|
|
4894
6059
|
* Current implementation consists all well known charset encodings.
|
|
4895
6060
|
* </p>
|
|
6061
|
+
* @deprecated This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding().
|
|
4896
6062
|
*/
|
|
4897
6063
|
setHanXinECIEncoding(value)
|
|
4898
6064
|
{
|