ComplexBarcode.js

  1. const generation = require("./Generation");
  2. const joint = require('./Joint');
  3. const java = require('java');
  4. /**
  5. * Interface for complex codetext used with ComplexBarcodeGenerator.
  6. */
  7. class IComplexCodetext extends joint.BaseJavaClass
  8. {
  9. constructor(javaClass)
  10. {
  11. super(javaClass);
  12. this.init();
  13. }
  14. /**
  15. * Construct codetext for complex barcode
  16. * @return Constructed codetext
  17. */
  18. getConstructedCodetext()
  19. {
  20. throw new BarcodeException('You have to implement the method getConstructedCodetext!');
  21. }
  22. /**
  23. * Initializes instance with constructed codetext.
  24. * @param constructedCodetext Constructed codetext.
  25. */
  26. initFromString(constructedCodetext)
  27. {
  28. throw new BarcodeException('You have to implement the method initFromString!');
  29. }
  30. /**
  31. * Gets barcode type.
  32. * @return Barcode type.
  33. */
  34. getBarcodeType()
  35. {
  36. throw new BarcodeException('You have to implement the method getBarcodeType!');
  37. }
  38. }
  39. /**
  40. * ComplexBarcodeGenerator for backend complex barcode (e.g. SwissQR) images generation.
  41. * @example
  42. * This sample shows how to create and save a SwissQR image.
  43. * let swissQRCodetext = new SwissQRCodetext(null);
  44. * swissQRCodetext.getBill().setAccount("Account");
  45. * swissQRCodetext.getBill().setBillInformation("BillInformation");
  46. * swissQRCodetext.getBill().setBillInformation("BillInformation");
  47. * swissQRCodetext.getBill().setAmount(1024);
  48. * swissQRCodetext.getBill().getCreditor().setName("Creditor.Name");
  49. * swissQRCodetext.getBill().getCreditor().setAddressLine1("Creditor.AddressLine1");
  50. * swissQRCodetext.getBill().getCreditor().setAddressLine2("Creditor.AddressLine2");
  51. * swissQRCodetext.getBill().getCreditor().setCountryCode("Nl");
  52. * swissQRCodetext.getBill().setUnstructuredMessage("UnstructuredMessage");
  53. * swissQRCodetext.getBill().setReference("Reference");
  54. * swissQRCodetext.getBill().setAlternativeSchemes([new AlternativeScheme("AlternativeSchemeInstruction1"),new AlternativeScheme("AlternativeSchemeInstruction2")]);
  55. * swissQRCodetext.getBill().setDebtor(new Address(null));
  56. * swissQRCodetext.getBill().getDebtor().setName("Debtor.Name");
  57. * swissQRCodetext.getBill().getDebtor().setAddressLine1("Debtor.AddressLine1");
  58. * swissQRCodetext.getBill().getDebtor().setAddressLine2("Debtor.AddressLine2");
  59. * swissQRCodetext.getBill().getDebtor().setCountryCode("Lux");
  60. * let cg = new ComplexBarcodeGenerator(swissQRCodetext);
  61. * let res = cg.generateBarCodeImage(BarcodeImageFormat.PNG);
  62. */
  63. class ComplexBarcodeGenerator extends joint.BaseJavaClass {
  64. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexBarcodeGenerator";
  65. parameters;
  66. init() {
  67. this.parameters = new generation.BaseGenerationParameters(this.getJavaClass().getParametersSync());
  68. }
  69. /**
  70. * Generation parameters.
  71. */
  72. getParameters() {
  73. return this.parameters;
  74. }
  75. /**
  76. * Creates an instance of ComplexBarcodeGenerator.
  77. * @param complexCodetext Complex codetext
  78. */
  79. constructor(complexCodetext)
  80. {
  81. let java_class_link = java.import(ComplexBarcodeGenerator.javaClassName);
  82. super(new java_class_link(complexCodetext.getJavaClass()));
  83. this.init();
  84. }
  85. /**
  86. * Generates complex barcode image under current settings.
  87. * @return Base64 presentation of image.
  88. */
  89. generateBarCodeImage(format) {
  90. let base64Image = this.getJavaClass().generateBarCodeImageSync(format);
  91. return base64Image;
  92. }
  93. /**
  94. * <p>
  95. * Generates and saves complex barcode image under current settings.
  96. * </p>
  97. * @param filePath Path to save to.
  98. * @param format BarCodeImageFormat(PNG, BMP, JPEG, GIF)
  99. */
  100. save(filePath, format) {
  101. let image64 = this.generateBarcodeImage(format);
  102. let buff = Buffer.from(image64, 'base64');
  103. fs.writeFileSync(filePath, buff);
  104. }
  105. }
  106. /**
  107. * Address of creditor or debtor.<br>
  108. * <br>
  109. * You can either set street, house number, postal code and town (type structured address)<br>
  110. * or address line 1 and 2 (type combined address elements). The type is automatically set<br>
  111. * once any of these fields is set. Before setting the fields, the address type is undetermined.<br>
  112. * If fields of both types are set, the address type becomes conflicting.<br>
  113. * Name and country code must always be set unless all fields are empty.<br>
  114. */
  115. class Address extends joint.BaseJavaClass {
  116. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwAddress";
  117. constructor()
  118. {
  119. let javaClass = java.import(Address.javaClassName)
  120. super(new javaClass());
  121. this.init();
  122. }
  123. static construct(javaClass)
  124. {
  125. let address = new Address();
  126. address.setJavaClass(javaClass);
  127. address.init();
  128. return address;
  129. }
  130. /**
  131. * Gets the address type.<br>
  132. * <br>
  133. * The address type is automatically set by either setting street / house number<br>
  134. * or address line 1 and 2. Before setting the fields, the address type is Undetermined.<br>
  135. * If fields of both types are set, the address type becomes Conflicting.<br>
  136. * @return The address type.
  137. */
  138. getType() {
  139. return this.getJavaClass().getTypeSync();
  140. }
  141. /**
  142. * Gets the name, either the first and last name of a natural person or the<br>
  143. * company name of a legal person.<br>
  144. * @return The name.
  145. */
  146. getName() {
  147. return this.getJavaClass().getNameSync();
  148. }
  149. /**
  150. * Sets the name, either the first and last name of a natural person or the<br>
  151. * company name of a legal person.<br>
  152. * @param value: The name.
  153. */
  154. setName(value) {
  155. this.getJavaClass().setNameSync(value);
  156. }
  157. /**
  158. * Gets the address line 1.<br>
  159. * <br>
  160. * Address line 1 contains street name, house number or P.O. box.<br>
  161. * <br>
  162. * Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already<br>
  163. * AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING.<br>
  164. * <br>
  165. * This field is only used for combined elements addresses and is optional.<br>
  166. * <br>
  167. * @return The address line 1.
  168. */
  169. getAddressLine1() {
  170. return this.getJavaClass().getAddressLine1Sync();
  171. }
  172. /**
  173. * Sets the address line 1.<br>
  174. * <br>
  175. * Address line 1 contains street name, house number or P.O. box.<br>
  176. * <br>
  177. * Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already<br>
  178. * AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING.<br>
  179. * <br>
  180. * This field is only used for combined elements addresses and is optional.<br>
  181. * <br>
  182. * @param value: The address line 1.<br>
  183. */
  184. setAddressLine1(value) {
  185. this.getJavaClass().setAddressLine1Sync(value);
  186. }
  187. /**
  188. * Gets the address line 2.<br>
  189. * Address line 2 contains postal code and town.<br>
  190. * Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already<br>
  191. * AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING.<br>
  192. * This field is only used for combined elements addresses. For this type, it's mandatory.<br>
  193. * @return The address line 2.
  194. */
  195. getAddressLine2() {
  196. return this.getJavaClass().getAddressLine2Sync();
  197. }
  198. /**
  199. * Sets the address line 2.<br>
  200. * Address line 2 contains postal code and town.<br>
  201. * Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already<br>
  202. * AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING.<br>
  203. * This field is only used for combined elements addresses. For this type, it's mandatory.<br>
  204. * @param value: The address line 2.
  205. */
  206. setAddressLine2(value) {
  207. this.getJavaClass().setAddressLine2Sync(value);
  208. }
  209. /**
  210. * Gets the street.<br>
  211. * The street must be speicfied without house number.<br>
  212. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  213. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  214. * This field is only used for structured addresses and is optional.<br>
  215. * @return The street.
  216. */
  217. getStreet() {
  218. return this.getJavaClass().getStreetSync();
  219. }
  220. /**
  221. * Sets the street.<br>
  222. * <br>
  223. * The street must be speicfied without house number.<br>
  224. * <br>
  225. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  226. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  227. * <br>
  228. * This field is only used for structured addresses and is optional.<br>
  229. * <br>
  230. * @param value: The street.
  231. */
  232. setStreet(value) {
  233. this.getJavaClass().setStreetSync(value);
  234. }
  235. /**
  236. * Gets the house number.<br>
  237. * <br>
  238. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  239. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  240. * <br>
  241. * This field is only used for structured addresses and is optional.<br>
  242. * <br>
  243. * @return The house number.<br>
  244. */
  245. getHouseNo() {
  246. return this.getJavaClass().getHouseNoSync();
  247. }
  248. /**
  249. * Sets the house number.<br>
  250. * <br>
  251. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  252. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  253. * <br>
  254. * This field is only used for structured addresses and is optional.<br>
  255. * <br>
  256. * @param value: The house number.
  257. */
  258. setHouseNo(value) {
  259. this.getJavaClass().setHouseNoSync(value);
  260. }
  261. /**
  262. * Gets the postal code.<br>
  263. * <br>
  264. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  265. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  266. * <br>
  267. * This field is only used for structured addresses. For this type, it's mandatory.<br>
  268. * <br>
  269. * @return The postal code.
  270. */
  271. getPostalCode() {
  272. return this.getJavaClass().getPostalCodeSync();
  273. }
  274. /**
  275. * Sets the postal code.<br>
  276. * <br>
  277. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  278. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  279. * <br>
  280. * This field is only used for structured addresses. For this type, it's mandatory.<br>
  281. * <br>
  282. * @param value The postal code.
  283. */
  284. setPostalCode(value) {
  285. this.getJavaClass().setPostalCodeSync(value);
  286. }
  287. /**
  288. * Gets the town or city.<br>
  289. * <br>
  290. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  291. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  292. * <br>
  293. * This field is only used for structured addresses. For this type, it's mandatory.<br>
  294. * <br>
  295. * @return The town or city.
  296. */
  297. getTown() {
  298. return this.getJavaClass().getTownSync();
  299. }
  300. /**
  301. * Sets the town or city.<br>
  302. * <br>
  303. * Setting this field sets the address type to AddressType.STRUCTURED unless it's already<br>
  304. * AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING.<br>
  305. * <br>
  306. * This field is only used for structured addresses. For this type, it's mandatory.<br>
  307. * <br>
  308. * @param value The town or city.
  309. */
  310. setTown(value) {
  311. this.getJavaClass().setTownSync(value);
  312. }
  313. /**
  314. * Gets the two-letter ISO country code.<br>
  315. * <br>
  316. * The country code is mandatory unless the entire address contains null or emtpy values. <br>
  317. * <br>
  318. * @return The ISO country code.<br>
  319. */
  320. getCountryCode() {
  321. return this.getJavaClass().getCountryCodeSync();
  322. }
  323. /**
  324. * Sets the two-letter ISO country code. <br>
  325. * <br>
  326. * The country code is mandatory unless the entire address contains null or emtpy values.<br>
  327. * <br>
  328. * @param value The ISO country code.<br>
  329. */
  330. setCountryCode(value) {
  331. this.getJavaClass().setCountryCodeSync(value);
  332. }
  333. /**
  334. * Clears all fields and sets the type to AddressType.UNDETERMINED.
  335. */
  336. clear() {
  337. this.setName(null);
  338. this.setAddressLine1(null);
  339. this.setaddressLine2(null);
  340. this.setStreet(null);
  341. this.setHouseNo(null);
  342. this.setPostalCode(null);
  343. this.setTown(null);
  344. this.setCountryCode(null);
  345. }
  346. /**
  347. * Determines whether the specified object is equal to the current object.<br>
  348. * @return true if the specified object is equal to the current object; otherwise, false.<br>
  349. * @param obj The object to compare with the current object.<br>
  350. */
  351. equals(obj) {
  352. return this.getJavaClass().equalsSync(obj.getJavaClass());
  353. }
  354. /**
  355. * Gets the hash code for this instance.<br>
  356. * @return A hash code for the current object<br>.
  357. */
  358. hashCode() {
  359. return this.getJavaClass().hashCodeSync();
  360. }
  361. init() {
  362. }
  363. }
  364. /**
  365. * Address type
  366. * @enum
  367. */
  368. AddressType =
  369. {
  370. /**
  371. * Undetermined
  372. */
  373. UNDETERMINED: "0",
  374. /**
  375. * Structured address
  376. */
  377. STRUCTURED: "1",
  378. /**
  379. * Combined address elements
  380. */
  381. COMBINED_ELEMENTS: "2",
  382. /**
  383. * Conflicting
  384. */
  385. CONFLICTING: "3"
  386. };
  387. /**
  388. * Alternative payment scheme instructions
  389. */
  390. class AlternativeScheme extends joint.BaseJavaClass {
  391. static get javaClassName() {
  392. return "com.aspose.mw.barcode.complexbarcode.MwAlternativeScheme";
  393. }
  394. constructor(instruction)
  395. {
  396. let javaAlternativeScheme = java.import(AlternativeScheme.javaClassName);
  397. super(new javaAlternativeScheme(instruction));
  398. }
  399. static construct(javaClass)
  400. {
  401. let jsClass = new AlternativeScheme("");
  402. jsClass.setJavaClass(javaClass);
  403. return jsClass;
  404. }
  405. /**
  406. * Gets the payment instruction for a given bill.<br>
  407. * <br>
  408. * The instruction consists of a two letter abbreviation for the scheme, a separator characters<br>
  409. * and a sequence of parameters(separated by the character at index 2).<br>
  410. */
  411. getInstruction() {
  412. return this.getJavaClass().getInstructionSync();
  413. }
  414. /**
  415. * Gets the payment instruction for a given bill.<br>
  416. * The instruction consists of a two letter abbreviation for the scheme, a separator characters<br>
  417. * and a sequence of parameters(separated by the character at index 2).
  418. */
  419. setInstruction(value) {
  420. this.getJavaClass().setInstructionSync(value);
  421. }
  422. /**
  423. * Determines whether the specified object is equal to the current object.<br>
  424. * @return true if the specified object is equal to the current object; otherwise, false.<br>
  425. * @param obj The object to compare with the current object.
  426. */
  427. equals(obj) {
  428. return this.getJavaClass().equalsSync(obj.getJavaClass());
  429. }
  430. /**
  431. * Gets the hash code for this instance.<br>
  432. * @return hash code for the current object.
  433. */
  434. hashCode() {
  435. return this.getJavaClass().hashCodeSync();
  436. }
  437. init() {
  438. }
  439. }
  440. /**
  441. * ComplexCodetextReader decodes codetext to specified complex barcode type.<br>
  442. * @example
  443. * This sample shows how to recognize and decode SwissQR image.
  444. *
  445. * let cr = new BarCodeReader("SwissQRCodetext.png", null, DecodeType.QR);
  446. * cr.read();
  447. * let result = ComplexCodetextReader.tryDecodeSwissQR(cr.getCodeText(false));
  448. */
  449. class ComplexCodetextReader {
  450. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwComplexCodetextReader";
  451. /**
  452. * Decodes SwissQR codetext.
  453. *
  454. * @param encodedCodetext encoded codetext
  455. * @return decoded SwissQRCodetext or null.
  456. */
  457. static tryDecodeSwissQR(encodedCodetext) {
  458. let javaJsComplexCodetextReader = java.import(ComplexCodetextReader.javaClassName);
  459. return SwissQRCodetext.construct(javaJsComplexCodetextReader.tryDecodeSwissQRSync(encodedCodetext));
  460. }
  461. /**
  462. * Decodes Royal Mail Mailmark 2D codetext.<br>
  463. * @param encodedCodetext encoded codetext<br>
  464. * @return decoded Royal Mail Mailmark 2D or null.
  465. */
  466. static tryDecodeMailmark2D(encodedCodetext)
  467. {
  468. let javaJsComplexCodetextReader = java.import(ComplexCodetextReader.javaClassName);
  469. return Mailmark2DCodetext.construct(javaJsComplexCodetextReader.tryDecodeMailmark2DSync(encodedCodetext));
  470. }
  471. /**
  472. * Decodes Mailmark Barcode C and L codetext.<br>
  473. * @param encodedCodetext encoded codetext<br>
  474. * @return Decoded Mailmark Barcode C and L or null.
  475. */
  476. static tryDecodeMailmark(encodedCodetext)
  477. {
  478. let res = new MailmarkCodetext(null);
  479. try
  480. {
  481. res.initFromString(encodedCodetext);
  482. }
  483. catch (e)
  484. {
  485. return null;
  486. }
  487. return res;
  488. }
  489. /**
  490. * Decodes MaxiCode codetext.
  491. * @param maxiCodeMode MaxiCode mode
  492. * @param encodedCodetext encoded codetext
  493. * @return Decoded MaxiCode codetext.
  494. */
  495. static tryDecodeMaxiCode(maxiCodeMode, encodedCodetext)
  496. {
  497. let javaComplexCodetextReaderClass = java.import(ComplexCodetextReader.javaClassName);
  498. let javaMaxiCodeCodetextMode2Class = java.import(MaxiCodeCodetextMode2.JAVA_CLASS_NAME);
  499. let javaMaxiCodeCodetextMode3Class = java.import(MaxiCodeCodetextMode3.JAVA_CLASS_NAME);
  500. let javaMaxiCodeCodetext = javaComplexCodetextReaderClass.tryDecodeMaxiCodeSync(maxiCodeMode, encodedCodetext);
  501. if(javaMaxiCodeCodetext.getClassSync().equalsSync(javaMaxiCodeCodetextMode2Class.class))
  502. {
  503. return MaxiCodeCodetextMode2.construct(javaMaxiCodeCodetext);
  504. }
  505. else if(javaMaxiCodeCodetext.getClassSync().equalsSync(javaMaxiCodeCodetextMode3Class.class))
  506. {
  507. return MaxiCodeCodetextMode3.construct(javaMaxiCodeCodetext);
  508. }
  509. else
  510. {
  511. return MaxiCodeStandardCodetext.construct(javaMaxiCodeCodetext);
  512. }
  513. }
  514. /**
  515. * <p>
  516. * Decodes HIBC LIC codetext.
  517. * </p>
  518. * @return decoded HIBC LIC Complex Codetext or null.
  519. * @param encodedCodetext encoded codetext
  520. */
  521. static tryDecodeHIBCLIC(encodedCodetext)
  522. {
  523. let javaHIBCLICSecondaryAndAdditionalDataCodetextClass = java.import(HIBCLICSecondaryAndAdditionalDataCodetext.JAVA_CLASS_NAME);
  524. let javaHIBCLICPrimaryDataCodetextClass = java.import(HIBCLICPrimaryDataCodetext.JAVA_CLASS_NAME);
  525. let javaHIBCLICCombinedCodetextClass = java.import(HIBCLICCombinedCodetext.JAVA_CLASS_NAME);
  526. let javaNodeJsComplexCodetextReaderJavaClass = java.import(ComplexCodetextReader.javaClassName);
  527. let hibclicComplexCodetext = javaNodeJsComplexCodetextReaderJavaClass.tryDecodeHIBCLICSync(encodedCodetext);
  528. if(hibclicComplexCodetext == null)
  529. return null;
  530. if(hibclicComplexCodetext.getClassSync().equalsSync(javaHIBCLICSecondaryAndAdditionalDataCodetextClass.class))
  531. {
  532. return HIBCLICSecondaryAndAdditionalDataCodetext.construct(hibclicComplexCodetext);
  533. }
  534. else if(hibclicComplexCodetext.getClassSync().equalsSync(javaHIBCLICPrimaryDataCodetextClass.class))
  535. {
  536. return HIBCLICPrimaryDataCodetext.construct(hibclicComplexCodetext);
  537. }
  538. else if(hibclicComplexCodetext.getClassSync().equalsSync(javaHIBCLICCombinedCodetextClass.class))
  539. {
  540. return HIBCLICCombinedCodetext.construct(hibclicComplexCodetext);
  541. }
  542. return null;
  543. }
  544. /**
  545. * <p>
  546. * Decodes HIBC PAS codetext.
  547. * </p>
  548. * @return decoded HIBC PAS Complex Codetext or null.
  549. * @param encodedCodetext encoded codetext
  550. */
  551. static tryDecodeHIBCPAS(encodedCodetext)
  552. {
  553. let javaComplexCodetextReader = java.import(ComplexCodetextReader.javaClassName);
  554. let javaHIBCPAS = javaComplexCodetextReader.tryDecodeHIBCPASSync(encodedCodetext);
  555. if((javaHIBCPAS) == null)
  556. return null;
  557. return HIBCPASCodetext.construct(javaHIBCPAS);
  558. }
  559. }
  560. /**
  561. * SwissQR bill standard version
  562. * @enum
  563. */
  564. QrBillStandardVersion =
  565. {
  566. /**
  567. *
  568. * Version 2.0
  569. *
  570. */
  571. V2_0: 0
  572. };
  573. /**
  574. * SwissQR bill data
  575. */
  576. class SwissQRBill extends joint.BaseJavaClass {
  577. creditor;
  578. debtor;
  579. init() {
  580. this.creditor = Address.construct(this.getJavaClass().getCreditorSync());
  581. this.debtor = Address.construct(this.getJavaClass().getDebtorSync());
  582. }
  583. constructor(javaClass) {
  584. super(javaClass);
  585. this.init();
  586. }
  587. static convertAlternativeSchemes(javaAlternativeSchemes) {
  588. let alternativeSchemes = [];
  589. for (let i = 0; i < javaAlternativeSchemes.sizeSync(); i++) {
  590. alternativeSchemes[i] = AlternativeScheme.construct(javaAlternativeSchemes.getSync(i));
  591. }
  592. return alternativeSchemes;
  593. }
  594. /**
  595. * Gets the version of the SwissQR bill standard.
  596. * @return The SwissQR bill standard version.
  597. */
  598. getVersion() {
  599. return this.getJavaClass().getVersionSync();
  600. }
  601. /**
  602. * Sets the version of the SwissQR bill standard.<br>
  603. * @param value The SwissQR bill standard version.
  604. */
  605. setVersion(value) {
  606. this.getJavaClass().setVersionSync(value);
  607. }
  608. /**
  609. * Gets the payment amount.<br>
  610. * <br>
  611. * Valid values are between 0.01 and 999,999,999.99.
  612. *
  613. * @return The payment amount.
  614. */
  615. getAmount() {
  616. return this.getJavaClass().getAmountSync();
  617. }
  618. /**
  619. * Sets the payment amount.<br>
  620. * Valid values are between 0.01 and 999,999,999.99.
  621. *
  622. * @param value The payment amount.
  623. */
  624. setAmount(value) {
  625. this.getJavaClass().setAmountSync(value);
  626. }
  627. /**
  628. * Gets the payment currency.<br>
  629. *
  630. * Valid values are "CHF" and "EUR".
  631. *
  632. * @return The payment currency.
  633. */
  634. getCurrency() {
  635. return this.getJavaClass().getCurrencySync();
  636. }
  637. /**
  638. * Sets the payment currency.<br>
  639. *
  640. * @param value Valid values are "CHF" and "EUR".
  641. */
  642. setCurrency(value) {
  643. this.getJavaClass().setCurrencySync(value);
  644. }
  645. /**
  646. * Gets the creditor's account number.<br>
  647. * <br>
  648. * Account numbers must be valid IBANs of a bank of Switzerland or<br>
  649. * Liechtenstein. Spaces are allowed in the account number.<br>
  650. *
  651. * @return The creditor account number.
  652. */
  653. getAccount() {
  654. return this.getJavaClass().getAccountSync();
  655. }
  656. /**
  657. * Sets the creditor's account number.<br>
  658. * <br>
  659. * Account numbers must be valid IBANs of a bank of Switzerland<br> or<br>
  660. * Liechtenstein. Spaces are allowed in the account number.
  661. *
  662. * @param value: The creditor account number.
  663. */
  664. setAccount(value) {
  665. this.getJavaClass().setAccountSync(value);
  666. }
  667. /**
  668. * Gets the creditor address.
  669. * @return The creditor address.
  670. */
  671. getCreditor() {
  672. return this.creditor;
  673. }
  674. /**
  675. * Sets the creditor address.
  676. * @param value: The creditor address.
  677. */
  678. setCreditor(value) {
  679. this.creditor = value;
  680. this.getJavaClass().setCreditorSync(value.getJavaClass());
  681. }
  682. /**
  683. * Gets the creditor payment reference.<br>
  684. * <br>
  685. * The reference is mandatory for SwissQR IBANs, i.e.IBANs in the range<br>
  686. * CHxx30000xxxxxx through CHxx31999xxxxx.<br>
  687. * <br>
  688. * If specified, the reference must be either a valid SwissQR reference<br>
  689. * (corresponding to ISR reference form) or a valid creditor reference<br>
  690. * according to ISO 11649 ("RFxxxx"). Both may contain spaces for formatting.<br>
  691. *
  692. * @return The creditor payment reference.
  693. */
  694. getReference() {
  695. return this.getJavaClass().getReferenceSync();
  696. }
  697. /**
  698. * Sets the creditor payment reference.<br>
  699. * <br>
  700. * The reference is mandatory for SwissQR IBANs, i.e.IBANs in the range<br>
  701. * CHxx30000xxxxxx through CHxx31999xxxxx.<br>
  702. * <br>
  703. * If specified, the reference must be either a valid SwissQR reference<br>
  704. * (corresponding to ISR reference form) or a valid creditor reference<br>
  705. * according to ISO 11649 ("RFxxxx"). Both may contain spaces for formatting.
  706. *
  707. * @param value The creditor payment reference.
  708. */
  709. setReference(value) {
  710. this.getJavaClass().setReferenceSync(value);
  711. }
  712. /**
  713. * Creates and sets a ISO11649 creditor reference from a raw string by prefixing<br>
  714. * the String with "RF" and the modulo 97 checksum.<br>
  715. * <br>
  716. * Whitespace is removed from the reference<br>
  717. * <br>
  718. * @exception ArgumentException rawReference contains invalid characters.
  719. * @param rawReference The raw reference.
  720. */
  721. createAndSetCreditorReference(rawReference) {
  722. this.getJavaClass().createAndSetCreditorReferenceSync(rawReference);
  723. }
  724. /**
  725. * Gets the debtor address.<br>
  726. * <br>
  727. * The debtor is optional. If it is omitted, both setting this field to<br>
  728. * null or setting an address with all null or empty values is ok.<br>
  729. * <br>
  730. * @return The debtor address.
  731. */
  732. getDebtor() {
  733. return this.debtor;
  734. }
  735. /**
  736. * Sets the debtor address.<br>
  737. * <br>
  738. * The debtor is optional. If it is omitted, both setting this field to<br>
  739. * null or setting an address with all null or empty values is ok.
  740. *
  741. * @param value: The debtor address.
  742. */
  743. setDebtor(value) {
  744. this.debtor = value;
  745. this.getJavaClass().setDebtorSync(value.getJavaClass());
  746. }
  747. /**
  748. * Gets the additional unstructured message.
  749. * @return The unstructured message.
  750. */
  751. getUnstructuredMessage() {
  752. return this.getJavaClass().getUnstructuredMessageSync();
  753. }
  754. /**
  755. * Sets the additional unstructured message.
  756. * @param value: The unstructured message.
  757. */
  758. setUnstructuredMessage(value) {
  759. this.getJavaClass().setUnstructuredMessageSync(value);
  760. }
  761. /**
  762. * Gets the additional structured bill information.
  763. * @return The structured bill information.
  764. */
  765. getBillInformation() {
  766. return this.getJavaClass().getBillInformationSync();
  767. }
  768. /**
  769. * Sets the additional structured bill information.
  770. * @param value: The structured bill information.
  771. */
  772. setBillInformation(value) {
  773. this.getJavaClass().setBillInformationSync(value);
  774. }
  775. /**
  776. * Gets ors sets the alternative payment schemes.<br>
  777. * <br>
  778. * A maximum of two schemes with parameters are allowed.
  779. *
  780. * @return The alternative payment schemes.
  781. */
  782. getAlternativeSchemes() {
  783. return SwissQRBill.convertAlternativeSchemes(this.getJavaClass().getAlternativeSchemesSync());
  784. }
  785. /**
  786. * Gets or sets the alternative payment schemes. <br>
  787. * <br>
  788. * A maximum of two schemes with parameters are allowed.<br>
  789. *
  790. * @param value: The alternative payment schemes.
  791. */
  792. setAlternativeSchemes(value) {
  793. let ArrayList = java.import('java.util.ArrayList');
  794. let javaArray = new ArrayList();
  795. for(let i = 0; i < value.length; i++)
  796. {
  797. javaArray.addSync(value[i].getJavaClass());
  798. }
  799. this.getJavaClass().setAlternativeSchemesSync(javaArray);
  800. }
  801. /**
  802. * Determines whether the specified object is equal to the current object.
  803. * @return true if the specified object is equal to the current object; otherwise, false.
  804. * @param obj The object to compare with the current object.
  805. */
  806. equals(obj) {
  807. return this.getJavaClass().equalsSync(obj.getJavaClass());
  808. }
  809. /**
  810. * Gets the hash code for this instance.
  811. * @return A hash code for the current object.
  812. */
  813. hashCode() {
  814. return this.getJavaClass().hashCodeSync();
  815. }
  816. }
  817. /**
  818. * Class for encoding and decoding the text embedded in the SwissQR code.
  819. */
  820. class SwissQRCodetext extends IComplexCodetext {
  821. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwSwissQRCodetext";
  822. bill;
  823. init() {
  824. this.bill = new SwissQRBill(this.getJavaClass().getBillSync());
  825. }
  826. /**
  827. * SwissQR bill data
  828. */
  829. getBill() {
  830. return this.bill;
  831. }
  832. /**
  833. * Creates an instance of SwissQRCodetext.
  834. *
  835. * @param bill SwissQR bill data
  836. * @throws BarcodeException
  837. */
  838. constructor(bill) {
  839. let java_class_link = java.import(SwissQRCodetext.javaClassName);
  840. let javaBill = null;
  841. if (bill == null)
  842. {
  843. javaBill = new java_class_link();
  844. }
  845. else
  846. {
  847. javaBill = new java_class_link(bill.getJavaClass());
  848. }
  849. super(javaBill);
  850. this.init();
  851. }
  852. static construct(javaClass)
  853. {
  854. let phpClass = new SwissQRCodetext(null);
  855. phpClass.setJavaClass(javaClass);
  856. return phpClass;
  857. }
  858. /**
  859. * Construct codetext from SwissQR bill data
  860. *
  861. * @return Constructed codetext
  862. */
  863. getConstructedCodetext() {
  864. return this.getJavaClass().getConstructedCodetextSync();
  865. }
  866. /**
  867. * Initializes Bill with constructed codetext.
  868. *
  869. * @param constructedCodetext Constructed codetext.
  870. */
  871. initFromString(constructedCodetext) {
  872. this.getJavaClass().initFromStringSync(constructedCodetext);
  873. this.init();
  874. }
  875. /**
  876. * Gets barcode type.
  877. *
  878. * @return Barcode type.
  879. */
  880. getBarcodeType() {
  881. return this.getJavaClass().getBarcodeTypeSync();
  882. }
  883. }
  884. /**
  885. * Class for encoding and decoding the text embedded in the 4-state Royal Mailmark code.
  886. */
  887. class MailmarkCodetext extends IComplexCodetext
  888. {
  889. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwMailmarkCodetext";
  890. /**
  891. * "0" – Null or Test<br>
  892. * "1" – Letter<br>
  893. * "2" – Large Letter
  894. */
  895. getFormat()
  896. { return this.getJavaClass().getFormatSync(); }
  897. /**
  898. * "0" – Null or Test<br>
  899. * "1" – LetterN<br>
  900. * "2" – Large Letter
  901. */
  902. setFormat(value)
  903. { this.getJavaClass().setFormatSync(value); }
  904. /**
  905. * Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use)
  906. */
  907. getVersionID()
  908. { return this.getJavaClass().getVersionIDSync(); }
  909. /**
  910. * Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use)
  911. */
  912. setVersionID(value)
  913. { this.getJavaClass().setVersionIDSync(value); }
  914. /**
  915. * "0" - Null or Test<br>
  916. * "1" - 1C (Retail)<br>
  917. * "2" - 2C (Retail)<br>
  918. * "3" - 3C (Retail)<br>
  919. * "4" - Premium (RetailPublishing Mail) (for potential future use)<br>
  920. * "5" - Deferred (Retail)<br>
  921. * "6" - Air (Retail) (for potential future use)<br>
  922. * "7" - Surface (Retail) (for potential future use)<br>
  923. * "8" - Premium (Network Access)<br>
  924. * "9" - Standard (Network Access)<br>
  925. */
  926. getClass_()
  927. {
  928. return this.getJavaClass().getClass_Sync();
  929. }
  930. /**
  931. * "0" - Null or Test<br>
  932. * "1" - 1C (Retail)<br>
  933. * "2" - 2C (Retail)<br>
  934. * "3" - 3C (Retail)<br>
  935. * "4" - Premium (RetailPublishing Mail) (for potential future use)<br>
  936. * "5" - Deferred (Retail)<br>
  937. * "6" - Air (Retail) (for potential future use)<br>
  938. * "7" - Surface (Retail) (for potential future use)<br>
  939. * "8" - Premium (Network Access)<br>
  940. * "9" - Standard (Network Access)
  941. */
  942. setClass_(value)
  943. {
  944. this.getJavaClass().setClassSync(value);
  945. }
  946. /**
  947. * Maximum values are 99 for Barcode C and 999999 for Barcode L.
  948. */
  949. getSupplychainID()
  950. { return this.getJavaClass().getSupplychainIDSync(); }
  951. /**
  952. * Maximum values are 99 for Barcode C and 999999 for Barcode L.
  953. */
  954. setSupplychainID(value)
  955. { this.getJavaClass().setSupplychainIDSync(value); }
  956. /**
  957. * Maximum value is 99999999.
  958. */
  959. getItemID()
  960. { return this.getJavaClass().getItemIDSync(); }
  961. /**
  962. * Maximum value is 99999999.
  963. */
  964. setItemID(value)
  965. { this.getJavaClass().setItemIDSync(value); }
  966. /**
  967. * The PC and DP must comply with a PAF format.<br>
  968. * Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern<br>
  969. * of characters denoting a domestic sorting code.<br>
  970. * A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix.
  971. */
  972. getDestinationPostCodePlusDPS()
  973. { return this.getJavaClass().getDestinationPostCodePlusDPSSync(); }
  974. /**
  975. * The PC and DP must comply with a PAF format.<br>
  976. * Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern<br>
  977. * of characters denoting a domestic sorting code.<br>
  978. * A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix.
  979. */
  980. setDestinationPostCodePlusDPS(value)
  981. { this.getJavaClass().setDestinationPostCodePlusDPSSync(value); }
  982. /**
  983. * Initializes a new instance of the {@code MailmarkCodetext} class.
  984. */
  985. constructor(mailmarkCodetext)
  986. {
  987. let java_class_link = java.import(MailmarkCodetext.javaClassName);
  988. let javaClass = null;
  989. if (mailmarkCodetext == null)
  990. {
  991. javaClass = new java_class_link();
  992. }
  993. else
  994. {
  995. javaClass = new java_class_link(mailmarkCodetext.getJavaClass());
  996. }
  997. super(javaClass);
  998. }
  999. init()
  1000. {}
  1001. /**
  1002. * Construct codetext from Mailmark data.
  1003. *
  1004. * @return Constructed codetext
  1005. */
  1006. getConstructedCodetext()
  1007. {
  1008. return this.getJavaClass().getConstructedCodetextSync();
  1009. }
  1010. /**
  1011. * Initializes Mailmark data from constructed codetext.
  1012. *
  1013. * @param constructedCodetext Constructed codetext.
  1014. */
  1015. initFromString(constructedCodetext)
  1016. {
  1017. this.getJavaClass().initFromStringSync(constructedCodetext);
  1018. }
  1019. /**
  1020. * Gets barcode type.
  1021. *
  1022. * @return Barcode type.
  1023. */
  1024. getBarcodeType()
  1025. {
  1026. return this.getJavaClass().getBarcodeTypeSync();
  1027. }
  1028. }
  1029. /**
  1030. * Class for encoding and decoding the text embedded in the Royal Mail 2D Mailmark code.
  1031. */
  1032. class Mailmark2DCodetext extends IComplexCodetext
  1033. {
  1034. static javaClassName = "com.aspose.mw.barcode.complexbarcode.MwMailmark2DCodetext";
  1035. static construct(javaClass)
  1036. {
  1037. let jsClass = new Mailmark2DCodetext();
  1038. jsClass.setJavaClass(javaClass);
  1039. return jsClass;
  1040. }
  1041. /**
  1042. * Identifies the UPU Country ID.Max length: 4 characters.
  1043. * @return Country ID
  1044. */
  1045. getUPUCountryID()
  1046. {
  1047. return this.getJavaClass().getUPUCountryIDSync();
  1048. }
  1049. /**
  1050. * Identifies the UPU Country ID.Max length: 4 characters.
  1051. * @param value Country ID
  1052. */
  1053. setUPUCountryID(value)
  1054. {
  1055. this.getJavaClass().setUPUCountryIDSync(value);
  1056. }
  1057. /**
  1058. * Identifies the Royal Mail Mailmark barcode payload for each product type.<br>
  1059. * Valid Values:<br>
  1060. * <br>
  1061. * '0' - Domestic Sorted &amp; Unsorted<br>
  1062. * 'A' - Online Postage<br>
  1063. * 'B' - Franking<br>
  1064. * 'C' - Consolidation
  1065. *
  1066. * @return Information type ID
  1067. */
  1068. getInformationTypeID()
  1069. {
  1070. return this.getJavaClass().getInformationTypeIDSync();
  1071. }
  1072. /**
  1073. * Identifies the Royal Mail Mailmark barcode payload for each product type.<br>
  1074. * Valid Values:<br>
  1075. * <br>
  1076. * '0' - Domestic Sorted &amp; Unsorted<br>
  1077. * 'A' - Online Postage<br>
  1078. * 'B' - Franking<br>
  1079. * 'C' - Consolidation
  1080. *
  1081. * @param value Information type ID
  1082. */
  1083. setInformationTypeID(value)
  1084. {
  1085. this.getJavaClass().setInformationTypeIDSync(value);
  1086. }
  1087. /**
  1088. * Identifies the barcode version as relevant to each Information Type ID.<br>
  1089. * Valid Values:<br>
  1090. * <br>
  1091. * Currently '1'.<br>
  1092. * '0' &amp; '2' to '9' and 'A' to 'Z' spare reserved for potential future use.
  1093. *
  1094. * @return Version ID
  1095. */
  1096. getVersionID()
  1097. {
  1098. return this.getJavaClass().getVersionIDSync();
  1099. }
  1100. /**
  1101. * Identifies the barcode version as relevant to each Information Type ID.<br>
  1102. * Valid Values:<br>
  1103. * <br>
  1104. * Currently '1'.<br>
  1105. * '0' &amp; '2' to '9' and 'A' to 'Z' spare reserved for potential future use.
  1106. *
  1107. * @param value Version ID
  1108. */
  1109. setVersionID(value)
  1110. {
  1111. this.getJavaClass().setVersionIDSync(value);
  1112. }
  1113. /**
  1114. * Identifies the class of the item.<br>
  1115. * <br>
  1116. * Valid Values:<br>
  1117. * '1' - 1C (Retail)<br>
  1118. * '2' - 2C (Retail)<br>
  1119. * '3' - Economy (Retail)<br>
  1120. * '5' - Deffered (Retail)<br>
  1121. * '8' - Premium (Network Access)<br>
  1122. * '9' - Standard (Network Access)
  1123. *
  1124. * @return class of the item
  1125. */
  1126. getClass_()
  1127. {
  1128. return this.getJavaClass().getClass_Sync();
  1129. }
  1130. /**
  1131. * Identifies the class of the item.<br>
  1132. * <br>
  1133. * Valid Values:<br>
  1134. * '1' - 1C (Retail)<br>
  1135. * '2' - 2C (Retail)<br>
  1136. * '3' - Economy (Retail)<br>
  1137. * '5' - Deffered (Retail)<br>
  1138. * '8' - Premium (Network Access)<br>
  1139. * '9' - Standard (Network Access)
  1140. *
  1141. * @param value class of the item
  1142. */
  1143. setClass_(value)
  1144. {
  1145. this.getJavaClass().setclassSync(value);
  1146. }
  1147. /**
  1148. * Identifies the unique group of customers involved in the mailing.<br>
  1149. * Max value: 9999999.
  1150. *
  1151. * @return Supply chain ID
  1152. */
  1153. getSupplyChainID()
  1154. {
  1155. return this.getJavaClass().getSupplyChainIDSync();
  1156. }
  1157. /**
  1158. * Identifies the unique group of customers involved in the mailing.<br>
  1159. * Max value: 9999999.
  1160. *
  1161. * @param value Supply chain ID
  1162. */
  1163. setSupplyChainID(value)
  1164. {
  1165. this.getJavaClass().setSupplyChainIDSync(value);
  1166. }
  1167. /**
  1168. * Identifies the unique item within the Supply Chain ID.<br>
  1169. * Every Mailmark barcode is required to carry an ID<br>
  1170. * so it can be uniquely identified for at least 90 days.<br>
  1171. * Max value: 99999999.
  1172. *
  1173. * @return item within the Supply Chain ID
  1174. */
  1175. getItemID()
  1176. {
  1177. return this.getJavaClass().getItemIDSync();
  1178. }
  1179. /**
  1180. * Identifies the unique item within the Supply Chain ID.<br>
  1181. * Every Mailmark barcode is required to carry an ID<br>
  1182. * so it can be uniquely identified for at least 90 days.<br>
  1183. * Max value: 99999999.
  1184. *
  1185. * @param value item within the Supply Chain ID
  1186. */
  1187. setItemID(value)
  1188. {
  1189. this.getJavaClass().setItemIDSync(value);
  1190. }
  1191. /**
  1192. * Contains the Postcode of the Delivery Address with DPS<br>
  1193. * If inland the Postcode/DP contains the following number of characters.<br>
  1194. * Area (1 or 2 characters) District(1 or 2 characters)<br>
  1195. * Sector(1 character) Unit(2 characters) DPS (2 characters).<br>
  1196. * The Postcode and DPS must comply with a valid PAF® format.
  1197. *
  1198. * @return the Postcode of the Delivery Address with DPS
  1199. */
  1200. getDestinationPostCodeAndDPS()
  1201. {
  1202. return this.getJavaClass().getDestinationPostCodeAndDPSSync();
  1203. }
  1204. /**
  1205. * Contains the Postcode of the Delivery Address with DPS<br>
  1206. * If inland the Postcode/DP contains the following number of characters.<br>
  1207. * Area (1 or 2 characters) District(1 or 2 characters)<br>
  1208. * Sector(1 character) Unit(2 characters) DPS (2 characters).<br>
  1209. * The Postcode and DPS must comply with a valid PAF® format.
  1210. *
  1211. * @param value the Postcode of the Delivery Address with DPS
  1212. */
  1213. setDestinationPostCodeAndDPS(value)
  1214. {
  1215. this.getJavaClass().setDestinationPostCodeAndDPSSync(value);
  1216. }
  1217. /**
  1218. * Flag which indicates what level of Return to Sender service is being requested.
  1219. *
  1220. * @return RTS Flag
  1221. */
  1222. getRTSFlag()
  1223. {
  1224. return this.getJavaClass().getRTSFlagSync();
  1225. }
  1226. /**
  1227. * Flag which indicates what level of Return to Sender service is being requested.
  1228. *
  1229. * @return RTS Flag
  1230. */
  1231. setRTSFlag(value)
  1232. {
  1233. this.getJavaClass().setRTSFlagSync(value);
  1234. }
  1235. /**
  1236. * Contains the Return to Sender Post Code but no DPS.<br>
  1237. * The PC(without DPS) must comply with a PAF® format.
  1238. *
  1239. * @return Return to Sender Post Code but no DPS
  1240. */
  1241. getReturnToSenderPostCode()
  1242. {
  1243. return this.getJavaClass().getReturnToSenderPostCodeSync();
  1244. }
  1245. /**
  1246. * Contains the Return to Sender Post Code but no DPS.<br>
  1247. * The PC(without DPS) must comply with a PAF® format.
  1248. *
  1249. * @param value Return to Sender Post Code but no DPS
  1250. */
  1251. setReturnToSenderPostCode(value)
  1252. {
  1253. this.getJavaClass().setReturnToSenderPostCodeSync(value);
  1254. }
  1255. /**
  1256. * Optional space for use by customer.<br>
  1257. * <br>
  1258. * Max length by Type:<br>
  1259. * Type 7: 6 characters<br>
  1260. * Type 9: 45 characters<br>
  1261. * Type 29: 25 characters
  1262. *
  1263. * @return Customer content
  1264. */
  1265. getCustomerContent()
  1266. {
  1267. return this.getJavaClass().getCustomerContentSync();
  1268. }
  1269. /**
  1270. * Optional space for use by customer.<br>
  1271. * <br>
  1272. * Max length by Type:<br>
  1273. * Type 7: 6 characters<br>
  1274. * Type 9: 45 characters<br>
  1275. * Type 29: 25 characters
  1276. *
  1277. * @param value Customer content
  1278. */
  1279. setCustomerContent(value)
  1280. {
  1281. this.getJavaClass().setCustomerContentSync(value);
  1282. }
  1283. /**
  1284. * Encode mode of Datamatrix barcode.<br>
  1285. * Default value: DataMatrixEncodeMode.C40.
  1286. *
  1287. * @return Encode mode of Datamatrix barcode.
  1288. */
  1289. getCustomerContentEncodeMode()
  1290. {
  1291. return this.getJavaClass().getCustomerContentEncodeModeSync();
  1292. }
  1293. /**
  1294. * Encode mode of Datamatrix barcode.<br>
  1295. * Default value: DataMatrixEncodeMode.C40.
  1296. *
  1297. * @param value Encode mode of Datamatrix barcode.
  1298. */
  1299. setCustomerContentEncodeMode(value)
  1300. {
  1301. this.getJavaClass().setCustomerContentEncodeModeSync(value);
  1302. }
  1303. /**
  1304. * 2D Mailmark Type defines size of Data Matrix barcode.
  1305. *
  1306. * @return Size of Data Matrix barcode
  1307. */
  1308. getDataMatrixType()
  1309. {
  1310. return this.getJavaClass().getDataMatrixTypeSync();
  1311. }
  1312. /**
  1313. * 2D Mailmark Type defines size of Data Matrix barcode.
  1314. *
  1315. * @param value Size of Data Matrix barcode
  1316. */
  1317. setDataMatrixType(value)
  1318. {
  1319. this.getJavaClass().setDataMatrixTypeSync(value);
  1320. }
  1321. /**
  1322. * Create default instance of Mailmark2DCodetext class.
  1323. */
  1324. constructor()
  1325. {
  1326. let java_class_link = java.import(Mailmark2DCodetext.javaClassName);
  1327. super(new java_class_link());
  1328. this.init();
  1329. }
  1330. init()
  1331. {}
  1332. /**
  1333. * Construct codetext from Mailmark data.
  1334. * @return Constructed codetext
  1335. */
  1336. getConstructedCodetext()
  1337. {
  1338. return this.getJavaClass().getConstructedCodetextSync();
  1339. }
  1340. /**
  1341. * Initializes Mailmark data from constructed codetext.
  1342. * @param constructedCodetext Constructed codetext.
  1343. */
  1344. initFromString(constructedCodetext)
  1345. {
  1346. this.getJavaClass().initFromStringSync(constructedCodetext);
  1347. }
  1348. /**
  1349. * Gets barcode type.
  1350. * @return Barcode type.
  1351. */
  1352. getBarcodeType() {
  1353. return EncodeTypes.DATA_MATRIX;
  1354. }
  1355. }
  1356. /**
  1357. * Base class for encoding and decoding the text embedded in the MaxiCode code.<br>
  1358. * <br>
  1359. * This sample shows how to decode raw MaxiCode codetext to MaxiCodeCodetext instance.
  1360. *
  1361. * @example
  1362. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1363. * reader.readBarCodes().forEach(function(result, i, results)
  1364. * {
  1365. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1366. * console.log("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType());
  1367. * console.log("MaxiCode mode: " + resultMaxiCodeCodetext.getMode());
  1368. * console.log("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
  1369. * });
  1370. */
  1371. class MaxiCodeCodetext extends IComplexCodetext
  1372. {
  1373. /**
  1374. * Gets MaxiCode mode.
  1375. * @return MaxiCode mode
  1376. */
  1377. getMode()
  1378. {
  1379. }
  1380. /**
  1381. * Gets a MaxiCode encode mode.
  1382. */
  1383. getMaxiCodeEncodeMode()
  1384. {
  1385. return this.getJavaClass().getMaxiCodeEncodeModeSync();
  1386. }
  1387. /**
  1388. * Sets a MaxiCode encode mode.
  1389. */
  1390. setMaxiCodeEncodeMode(value)
  1391. {
  1392. this.getJavaClass().setMaxiCodeEncodeModeSync(value);
  1393. }
  1394. /**
  1395. * Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO.
  1396. */
  1397. getECIEncoding()
  1398. {
  1399. return this.getJavaClass().getECIEncodingSync();
  1400. }
  1401. /**
  1402. * Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO.
  1403. */
  1404. setECIEncoding(value)
  1405. {
  1406. this.getJavaClass().setECIEncodingSync(value);
  1407. }
  1408. /**
  1409. * Gets barcode type.
  1410. * @return Barcode type
  1411. */
  1412. getBarcodeType()
  1413. {
  1414. return this.getJavaClass().getBarcodeTypeSync();
  1415. }
  1416. }
  1417. /**
  1418. * Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6.
  1419. * @example
  1420. * //Mode 4
  1421. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1422. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4);
  1423. * maxiCodeCodetext.setMessage("Test message");
  1424. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1425. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1426. *
  1427. * @example
  1428. * //Mode 5
  1429. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1430. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5);
  1431. * maxiCodeCodetext.setMessage("Test message");
  1432. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1433. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1434. *
  1435. * @example
  1436. * //Mode 6
  1437. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1438. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6);
  1439. * maxiCodeCodetext.setMessage("Test message");
  1440. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1441. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1442. */
  1443. class MaxiCodeSecondMessage extends joint.BaseJavaClass
  1444. {
  1445. getMessage()
  1446. {}
  1447. }
  1448. /**
  1449. * Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6.
  1450. *
  1451. * @example
  1452. * //Mode 4
  1453. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1454. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4);
  1455. * maxiCodeCodetext.setMessage("Test message");
  1456. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1457. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1458. *
  1459. * @example
  1460. * //Mode 5
  1461. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1462. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5);
  1463. * maxiCodeCodetext.setMessage("Test message");
  1464. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1465. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1466. *
  1467. * @example
  1468. * //Mode 6
  1469. * let maxiCodeCodetext = new MaxiCodeStandardCodetext();
  1470. * maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6);
  1471. * maxiCodeCodetext.setMessage("Test message");
  1472. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext());
  1473. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1474. */
  1475. class MaxiCodeStandardCodetext extends MaxiCodeCodetext
  1476. {
  1477. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStandardCodetext";
  1478. constructor()
  1479. {
  1480. try
  1481. {
  1482. let java_class = java.import(MaxiCodeStandardCodetext.JAVA_CLASS_NAME);
  1483. super(new java_class());
  1484. }
  1485. catch (ex)
  1486. {
  1487. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1488. }
  1489. }
  1490. static construct(javaClass)
  1491. {
  1492. let _class = new MaxiCodeStandardCodetext();
  1493. _class.setJavaClass(javaClass);
  1494. return _class;
  1495. }
  1496. /**
  1497. * Gets message.
  1498. */
  1499. getMessage()
  1500. {
  1501. return this.getJavaClass().getMessageSync();
  1502. }
  1503. /**
  1504. * Sets message.
  1505. */
  1506. setMessage(value)
  1507. {
  1508. this.getJavaClass().setMessageSync(value);
  1509. }
  1510. /**
  1511. * Sets MaxiCode mode. Standart codetext can be used only with modes 4, 5 and 6.
  1512. */
  1513. setMode(mode)
  1514. {
  1515. this.getJavaClass().setModeSync(mode);
  1516. }
  1517. /**
  1518. * Gets MaxiCode mode.
  1519. * @return MaxiCode mode
  1520. */
  1521. getMode()
  1522. {
  1523. return this.getJavaClass().getModeSync();
  1524. }
  1525. /**
  1526. * Constructs codetext
  1527. * @return Constructed codetext
  1528. */
  1529. getConstructedCodetext()
  1530. {
  1531. return this.getJavaClass().getConstructedCodetextSync();
  1532. }
  1533. /**
  1534. * Initializes instance from constructed codetext.
  1535. * @param constructedCodetext Constructed codetext.
  1536. */
  1537. initFromString(constructedCodetext)
  1538. {
  1539. this.getJavaClass().initFromStringSync(constructedCodetext);
  1540. }
  1541. /**
  1542. * Returns a value indicating whether this instance is equal to a specified <see cref="MaxiCodeStandardCodetext"/> value.
  1543. * @param obj An <see cref="MaxiCodeStandardCodetext"/> value to compare to this instance.
  1544. * @return if obj has the same value as this instance; otherwise, <b>false</b>.
  1545. */
  1546. equals(obj)
  1547. {
  1548. return this.getJavaClass().equalsSync(obj.getJavaClass());
  1549. }
  1550. /**
  1551. * Returns the hash code for this instance.
  1552. * @return A 32-bit signed integer hash code
  1553. */
  1554. getHashCode()
  1555. {
  1556. return this.getJavaClass().getHashCodeSync();
  1557. }
  1558. init()
  1559. {
  1560. }
  1561. }
  1562. /**
  1563. * Class for encoding and decoding standart second message for MaxiCode barcode.
  1564. */
  1565. class MaxiCodeStandartSecondMessage extends MaxiCodeSecondMessage
  1566. {
  1567. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStandartSecondMessage";
  1568. constructor()
  1569. {
  1570. try
  1571. {
  1572. let java_class_link = java.import(MaxiCodeStandartSecondMessage.JAVA_CLASS_NAME);
  1573. let javaClass = new java_class_link();
  1574. super(javaClass);
  1575. }
  1576. catch (ex)
  1577. {
  1578. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1579. }
  1580. }
  1581. /**
  1582. * Sets second message
  1583. */
  1584. setMessage(value)
  1585. {
  1586. this.getJavaClass().setMessageSync(value);
  1587. }
  1588. /**
  1589. * Gets second message
  1590. */
  1591. getMessage()
  1592. {
  1593. return this.getJavaClass().getMessageSync();
  1594. }
  1595. /**
  1596. * Returns a value indicating whether this instance is equal to a specified <see cref="MaxiCodeStandartSecondMessage"/> value.
  1597. * @param obj An <see cref="MaxiCodeStandartSecondMessage"/> value to compare to this instance
  1598. * @return <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.
  1599. */
  1600. equals(obj)
  1601. {
  1602. return this.getJavaClass().equalsSync(obj.getJavaClass());
  1603. }
  1604. /**
  1605. * Returns the hash code for this instance.<br>
  1606. * @return A 32-bit signed integer hash code.
  1607. */
  1608. getHashCode()
  1609. {
  1610. return this.getJavaClass().getHashCodeSync();
  1611. }
  1612. init()
  1613. {
  1614. }
  1615. }
  1616. /**
  1617. * Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3.
  1618. *
  1619. * @example
  1620. * This sample shows how to decode raw MaxiCode codetext to MaxiCodeStructuredCodetext instance.
  1621. *
  1622. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1623. * reader.readBarCodes().forEach(function(result, i, results)
  1624. * {
  1625. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1626. * if (resultMaxiCodeCodetext instanceof MaxiCodeStructuredCodetext)
  1627. * {
  1628. * let maxiCodeStructuredCodetext = resultMaxiCodeCodetext;
  1629. * console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode());
  1630. * console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode());
  1631. * console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
  1632. * }
  1633. * });
  1634. */
  1635. class MaxiCodeStructuredCodetext extends MaxiCodeCodetext
  1636. {
  1637. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStructuredCodetext";
  1638. maxiCodeSecondMessage;
  1639. constructor(javaClass)
  1640. {
  1641. try
  1642. {
  1643. super(javaClass);
  1644. }
  1645. catch (ex)
  1646. {
  1647. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1648. }
  1649. }
  1650. init()
  1651. {
  1652. let javaMaxiCodeSecondMessage = this.getJavaClass().getSecondMessage();
  1653. let javaMaxiCodeStandartSecondMessageClass = java.import("com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStandartSecondMessage");
  1654. let javaMaxiCodeStandartSecondMessage = new javaMaxiCodeStandartSecondMessageClass();
  1655. let javaMaxiCodeStructuredSecondMessageClass = java.import("com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStructuredSecondMessage");
  1656. let javaMaxiCodeStructuredSecondMessage = new javaMaxiCodeStructuredSecondMessageClass();
  1657. if(javaMaxiCodeSecondMessage instanceof javaMaxiCodeStandartSecondMessage)
  1658. {
  1659. this.maxiCodeSecondMessage = new MaxiCodeStandartSecondMessage(this.getJavaClass().getSecondMessageSync());
  1660. }
  1661. else if(javaMaxiCodeSecondMessage instanceof javaMaxiCodeStructuredSecondMessage)
  1662. {
  1663. this.maxiCodeSecondMessage = new MaxiCodeStructuredSecondMessage(this.getJavaClass().getSecondMessageSync());
  1664. }
  1665. }
  1666. /**
  1667. * Identifies the postal code. Must be 9 digits in mode 2 or<br>
  1668. * 6 alphanumeric symbols in mode 3.
  1669. */
  1670. getPostalCode()
  1671. {
  1672. return this.getJavaClass().getPostalCodeSync();
  1673. }
  1674. /**
  1675. * Identifies the postal code. Must be 9 digits in mode 2 or
  1676. * 6 alphanumeric symbols in mode 3.
  1677. */
  1678. setPostalCode(value)
  1679. {
  1680. this.getJavaClass().setPostalCodeSync(value);
  1681. }
  1682. /**
  1683. * Identifies 3 digit country code.
  1684. */
  1685. getCountryCode()
  1686. {
  1687. return this.getJavaClass().getCountryCodeSync();
  1688. }
  1689. /**
  1690. * Identifies 3 digit country code.
  1691. */
  1692. setCountryCode(value)
  1693. {
  1694. this.getJavaClass().setCountryCodeSync(value);
  1695. }
  1696. /**
  1697. * Identifies 3 digit service category.
  1698. */
  1699. getServiceCategory()
  1700. {
  1701. return this.getJavaClass().getServiceCategorySync();
  1702. }
  1703. /**
  1704. * Identifies 3 digit service category.
  1705. */
  1706. setServiceCategory(value)
  1707. {
  1708. this.getJavaClass().setServiceCategorySync(value);
  1709. }
  1710. /**
  1711. * Identifies second message of the barcode.
  1712. */
  1713. getSecondMessage()
  1714. {
  1715. return this.maxiCodeSecondMessage;
  1716. }
  1717. /**
  1718. * Identifies second message of the barcode.
  1719. */
  1720. setSecondMessage(value)
  1721. {
  1722. this.maxiCodeSecondMessage = value;
  1723. this.getJavaClass().setSecondMessageSync(value.getJavaClass());
  1724. }
  1725. /**
  1726. * Constructs codetext
  1727. * @return Constructed codetext
  1728. */
  1729. getConstructedCodetext()
  1730. {
  1731. return this.getJavaClass().getConstructedCodetextSync();
  1732. }
  1733. /**
  1734. * Initializes instance from constructed codetext.
  1735. * @param constructedCodetext Constructed codetext.
  1736. */
  1737. initFromString(constructedCodetext)
  1738. {
  1739. this.getJavaClass().initFromStringSync(constructedCodetext);
  1740. }
  1741. /**
  1742. * Returns a value indicating whether this instance is equal to a specified <see cref="MaxiCodeStructuredCodetext"/> value.
  1743. * @param obj An <see cref="MaxiCodeStructuredCodetext"/> value to compare to this instance
  1744. * @return <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>
  1745. */
  1746. equals(obj)
  1747. {
  1748. return this.getJavaClass().equalsSync(obj.getJavaClass());
  1749. }
  1750. /**
  1751. * Returns the hash code for this instance.
  1752. * @return A 32-bit signed integer hash code.
  1753. */
  1754. getHashCode()
  1755. {
  1756. return this.getJavaClass().getHashCodeSync();
  1757. }
  1758. }
  1759. /**
  1760. * Class for encoding and decoding the text embedded in the MaxiCode code for modes 2.
  1761. *
  1762. * @example
  1763. * This sample shows how to encode and decode MaxiCode codetext for mode 2.
  1764. * //Mode 2 with standart second message
  1765. * let maxiCodeCodetext = new MaxiCodeCodetextMode2();
  1766. * maxiCodeCodetext.setPostalCode("524032140");
  1767. * maxiCodeCodetext.setCountryCode(056);
  1768. * maxiCodeCodetext.setServiceCategory(999);
  1769. * let maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage();
  1770. * maxiCodeStandartSecondMessage.setMessage("Test message");
  1771. * maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage);
  1772. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext);
  1773. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1774. *
  1775. * @example
  1776. * //Mode 2 with structured second message
  1777. * let maxiCodeCodetext = new MaxiCodeCodetextMode2();
  1778. * maxiCodeCodetext.setPostalCode("524032140");
  1779. * maxiCodeCodetext.setCountryCode(056);
  1780. * maxiCodeCodetext.setServiceCategory(999);
  1781. * let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage();
  1782. * maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE");
  1783. * maxiCodeStructuredSecondMessage.add("PITTSBURGH");
  1784. * maxiCodeStructuredSecondMessage.add("PA");
  1785. * maxiCodeStructuredSecondMessage.setYear(99);
  1786. * maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage);
  1787. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext);
  1788. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1789. *
  1790. * @example
  1791. * //Decoding raw codetext with standart second message
  1792. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1793. * reader.readBarCodes().forEach(function(result, i, results)
  1794. * {
  1795. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1796. * if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2)
  1797. * {
  1798. * let maxiCodeStructuredCodetext = resultMaxiCodeCodetext;
  1799. * console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode());
  1800. * console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode());
  1801. * console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
  1802. * if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStandartSecondMessage)
  1803. * {
  1804. * let secondMessage = maxiCodeStructuredCodetext.getSecondMessage();
  1805. * console.log("Message: " + secondMessage.getMessage());
  1806. * }
  1807. * }
  1808. * });
  1809. *
  1810. * @example
  1811. * //Decoding raw codetext with structured second message
  1812. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1813. * reader.readBarCodes().forEach(function(result, i, results)
  1814. * {
  1815. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1816. * if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2){
  1817. * let maxiCodeStructuredCodetext = resultMaxiCodeCodetext;
  1818. * console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode());
  1819. * console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode());
  1820. * console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
  1821. * if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStructuredSecondMessage){
  1822. * let secondMessage = maxiCodeStructuredCodetext.getSecondMessage();
  1823. * console.log("Message:");
  1824. * secondMessage.getIdentifiers().forEach(identifier,i, identifiers){
  1825. * console.log(identifier);
  1826. * });
  1827. * }
  1828. * }
  1829. * });
  1830. */
  1831. class MaxiCodeCodetextMode2 extends MaxiCodeStructuredCodetext
  1832. {
  1833. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeCodetextMode2";
  1834. constructor()
  1835. {
  1836. try
  1837. {
  1838. let java_class_link = java.import(MaxiCodeCodetextMode2.JAVA_CLASS_NAME);
  1839. let javaClass = new java_class_link();
  1840. super(javaClass);
  1841. }
  1842. catch (ex)
  1843. {
  1844. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1845. }
  1846. }
  1847. static construct(javaClass)
  1848. {
  1849. let _class = new MaxiCodeCodetextMode2();
  1850. _class.setJavaClass(javaClass);
  1851. return _class;
  1852. }
  1853. /**
  1854. * Gets MaxiCode mode.
  1855. * @return MaxiCode mode
  1856. */
  1857. getMode()
  1858. {
  1859. return this.getJavaClass().getModeSync();
  1860. }
  1861. init()
  1862. {
  1863. super.init();
  1864. }
  1865. }
  1866. /**
  1867. * Class for encoding and decoding the text embedded in the MaxiCode code for modes 3.<br>
  1868. * This sample shows how to encode and decode MaxiCode codetext for mode 3.
  1869. * @example
  1870. * //Mode 3 with standart second message
  1871. * let maxiCodeCodetext = new MaxiCodeCodetextMode3();
  1872. * maxiCodeCodetext.setPostalCode("B1050");
  1873. * maxiCodeCodetext.setCountryCode(056);
  1874. * maxiCodeCodetext.setServiceCategory(999);
  1875. * let maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage();
  1876. * maxiCodeStandartSecondMessage.setMessage("Test message");
  1877. * maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage);
  1878. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext);
  1879. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1880. *
  1881. * @example
  1882. * //Mode 3 with structured second message
  1883. * let maxiCodeCodetext = new MaxiCodeCodetextMode3();
  1884. * maxiCodeCodetext.setPostalCode("B1050");
  1885. * maxiCodeCodetext.setCountryCode(056);
  1886. * maxiCodeCodetext.setServiceCategory(999);
  1887. * let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage();
  1888. * maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE");
  1889. * maxiCodeStructuredSecondMessage.add("PITTSBURGH");
  1890. * maxiCodeStructuredSecondMessage.add("PA");
  1891. * maxiCodeStructuredSecondMessage.setYear(99);
  1892. * maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage);
  1893. * let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext);
  1894. * complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG);
  1895. *
  1896. * @example
  1897. * //Decoding raw codetext with standart second message
  1898. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1899. * reader.readBarCodes().forEach(function(result, i, results)
  1900. * {
  1901. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1902. * if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3)
  1903. * {
  1904. * let maxiCodeStructuredCodetext = resultMaxiCodeCodetext;
  1905. * console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode());
  1906. * console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode());
  1907. * console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
  1908. * if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStandartSecondMessage)
  1909. * {
  1910. * let secondMessage = maxiCodeStructuredCodetext.getSecondMessage();
  1911. * console.log("Message: " + secondMessage.getMessage());
  1912. * }
  1913. * }
  1914. * });
  1915. *
  1916. * @example
  1917. *
  1918. * //Decoding raw codetext with structured second message
  1919. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE);
  1920. * reader.readBarCodes().forEach(function(result, i, results)
  1921. * {
  1922. * let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText());
  1923. * if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3)
  1924. * {
  1925. * let maxiCodeStructuredCodetext = resultMaxiCodeCodetext;
  1926. * console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode());
  1927. * console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode());
  1928. * console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory());
  1929. * if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStructuredSecondMessage)
  1930. * {
  1931. * let secondMessage = maxiCodeStructuredCodetext.getSecondMessage();
  1932. * console.log("Message:");
  1933. * secondMessage.getIdentifiers().forEach(identifier,i, identifiers){
  1934. * console.log(identifier);
  1935. * });
  1936. * }
  1937. * }
  1938. * });
  1939. */
  1940. class MaxiCodeCodetextMode3 extends MaxiCodeStructuredCodetext
  1941. {
  1942. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeCodetextMode3";
  1943. constructor()
  1944. {
  1945. try
  1946. {
  1947. let java_class_link = java.import(MaxiCodeCodetextMode3.JAVA_CLASS_NAME);
  1948. let javaClass = new java_class_link();
  1949. super(javaClass);
  1950. }
  1951. catch (ex)
  1952. {
  1953. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1954. }
  1955. }
  1956. static construct(javaClass)
  1957. {
  1958. let _class = new MaxiCodeCodetextMode3();
  1959. _class.setJavaClass(javaClass);
  1960. return _class;
  1961. }
  1962. /**
  1963. * Gets MaxiCode mode.
  1964. * @return MaxiCode mode
  1965. */
  1966. getMode()
  1967. {
  1968. return this.getJavaClass().getMode();
  1969. }
  1970. init()
  1971. {
  1972. super.init();
  1973. }
  1974. }
  1975. /**
  1976. * Class for encoding and decoding structured second message for MaxiCode barcode.
  1977. */
  1978. class MaxiCodeStructuredSecondMessage extends MaxiCodeSecondMessage
  1979. {
  1980. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwMaxiCodeStructuredSecondMessage";
  1981. constructor()
  1982. {
  1983. try
  1984. {
  1985. let java_class = java.import(MaxiCodeStructuredSecondMessage.JAVA_CLASS_NAME);
  1986. super(new java_class());
  1987. }
  1988. catch (ex)
  1989. {
  1990. throw new BarcodeException(ex.getMessage(), __FILE__, __LINE__);
  1991. }
  1992. }
  1993. /**
  1994. * Gets year. Year must be 2 digit integer value.
  1995. */
  1996. getYear()
  1997. {
  1998. return this.getJavaClass().getYear();
  1999. }
  2000. /**
  2001. * Sets year. Year must be 2 digit integer value.
  2002. */
  2003. setYear(value)
  2004. {
  2005. this.getJavaClass().setYear(value);
  2006. }
  2007. /**
  2008. * Gets identifiers list
  2009. * @return List of identifiers
  2010. */
  2011. getIdentifiers()
  2012. {
  2013. let identifiers_string = this.getJavaClass().getIdentifiersSync();
  2014. let delimeter = "\\/\\";
  2015. let identifiers = identifiers_string.split(delimeter);
  2016. return identifiers;
  2017. }
  2018. /**
  2019. * Adds new identifier
  2020. * @param identifier Identifier to be added
  2021. */
  2022. add(identifier)
  2023. {
  2024. this.getJavaClass().addSync(identifier);
  2025. }
  2026. /**
  2027. * Clear identifiers list
  2028. */
  2029. clear()
  2030. {
  2031. this.getJavaClass().clearSync();
  2032. }
  2033. /**
  2034. * Gets constructed second message
  2035. * @return Constructed second message
  2036. */
  2037. getMessage()
  2038. {
  2039. return this.getJavaClass().getMessageSync();
  2040. }
  2041. /**
  2042. * Returns a value indicating whether this instance is equal to a specified <see cref="MaxiCodeStructuredSecondMessage"/> value.
  2043. * @param obj "obj">An <see cref="MaxiCodeStructuredSecondMessage"/> value to compare to this instance.
  2044. * @return <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.
  2045. */
  2046. equals(obj)
  2047. {
  2048. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2049. }
  2050. /**
  2051. * Returns the hash code for this instance.
  2052. * @return A 32-bit signed integer hash code.
  2053. */
  2054. getHashCode()
  2055. {
  2056. return this.getJavaClass().getHashCodeSync();
  2057. }
  2058. init()
  2059. {
  2060. }
  2061. }
  2062. /**
  2063. * Base class for encoding and decoding the text embedded in the HIBC LIC code.<br>
  2064. * <br>
  2065. * This sample shows how to decode raw HIBC LIC codetext to HIBCLICComplexCodetext instance.
  2066. * @example
  2067. * let reader = new BarCodeReader("c:\\test.png", null, DecodeType.HIBC_AZTEC_LIC);
  2068. * reader.readBarCodes().forEach(function(result, i, results)
  2069. * {
  2070. * let resultHIBCLICComplexCodetext = ComplexCodetextReader.tryDecodeHIBCLIC(result.getCodeText());
  2071. * print("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType());
  2072. * print("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext());
  2073. * });
  2074. */
  2075. class HIBCLICComplexCodetext extends IComplexCodetext
  2076. {
  2077. constructor(javaClass)
  2078. {
  2079. super(javaClass);
  2080. }
  2081. /**
  2082. * <p>
  2083. * Constructs codetext
  2084. * </p>
  2085. * @return Constructed codetext
  2086. */
  2087. getConstructedCodetext(){}
  2088. /**
  2089. * <p>
  2090. * Initializes instance from constructed codetext.
  2091. * </p>
  2092. * @param constructedCodetext Constructed codetext.
  2093. */
  2094. initFromString(constructedCodetext){}
  2095. /**
  2096. * <p>
  2097. * Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types.
  2098. * Default value: HIBCCode39LIC.
  2099. * </p>
  2100. * @return Barcode type.
  2101. */
  2102. getBarcodeType()
  2103. {
  2104. return this.getJavaClass().getBarcodeTypeSync();
  2105. }
  2106. /**
  2107. * <p>
  2108. * Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types.
  2109. * Default value: HIBCCode39LIC.
  2110. * </p>
  2111. * @return Barcode type.
  2112. */
  2113. setBarcodeType(value)
  2114. {
  2115. this.getJavaClass().setBarcodeTypeSync(value);
  2116. }
  2117. }
  2118. /**
  2119. * <p>
  2120. * Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary and secodary data.
  2121. * </p>
  2122. * This sample shows how to encode and decode HIBC LIC using HIBCLICCombinedCodetext.
  2123. *
  2124. * @example
  2125. *
  2126. * let combinedCodetext = new HIBCLICCombinedCodetext();
  2127. * combinedCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC);
  2128. * combinedCodetext.setPrimaryData(new PrimaryData());
  2129. * combinedCodetext.getPrimaryData().setProductOrCatalogNumber("12345");
  2130. * combinedCodetext.getPrimaryData().setLabelerIdentificationCode("A999");
  2131. * combinedCodetext.getPrimaryData().setUnitOfMeasureID(1);
  2132. * combinedCodetext.setSecondaryAndAdditionalData(new SecondaryAndAdditionalData());
  2133. * combinedCodetext.getSecondaryAndAdditionalData().setExpiryDate(new Date());
  2134. * combinedCodetext.getSecondaryAndAdditionalData().setExpiryDateFormat(HIBCLICDateFormat.MMDDYY);
  2135. * combinedCodetext.getSecondaryAndAdditionalData().setQuantity(30);
  2136. * combinedCodetext.getSecondaryAndAdditionalData().setLotNumber("LOT123");
  2137. * combinedCodetext.getSecondaryAndAdditionalData().setSerialNumber("SERIAL123");
  2138. * combinedCodetext.getSecondaryAndAdditionalData().setDateOfManufacture(new Date());
  2139. * ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(combinedCodetext);
  2140. * let image = generator.generateBarCodeImage(BarCodeImageFormat.PNG);
  2141. * let reader = new BarCodeReader(image, null, DecodeType.HIBCQRLIC);
  2142. * reader.readBarCodes();
  2143. * let codetext = reader.getFoundBarCodes()[0].getCodeText();
  2144. * let result = ComplexCodetextReader.tryDecodeHIBCLIC(codetext) ;
  2145. * print("Product or catalog number: " + result.getPrimaryData().getProductOrCatalogNumber());
  2146. * print("Labeler identification code: " + result.getPrimaryData().getLabelerIdentificationCode());
  2147. * print("Unit of measure ID: " + result.getPrimaryData().getUnitOfMeasureID());
  2148. * print("Expiry date: " + result.getSecondaryAndAdditionalData().getExpiryDate());
  2149. * print("Quantity: " + result.getSecondaryAndAdditionalData().getQuantity());
  2150. * print("Lot number: " + result.getSecondaryAndAdditionalData().getLotNumber());
  2151. * print("Serial number: " + result.getSecondaryAndAdditionalData().getSerialNumber());
  2152. * print("Date of manufacture: " + result.getSecondaryAndAdditionalData().getDateOfManufacture());
  2153. */
  2154. class HIBCLICCombinedCodetext extends HIBCLICComplexCodetext
  2155. {
  2156. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwHIBCLICCombinedCodetext";
  2157. constructor()
  2158. {
  2159. let java_class_link = java.import(HIBCLICCombinedCodetext.JAVA_CLASS_NAME);
  2160. let javaClass = new java_class_link();
  2161. super(javaClass);
  2162. }
  2163. static construct(javaClass)
  2164. {
  2165. let obj = new HIBCLICCombinedCodetext();
  2166. obj.setJavaClass(javaClass);
  2167. return obj;
  2168. }
  2169. init()
  2170. {
  2171. this.auto_PrimaryData = PrimaryData.construct(this.getJavaClass().getPrimaryDataSync());
  2172. this.auto_SecondaryAndAdditionalData = SecondaryAndAdditionalData.construct(this.getJavaClass().getSecondaryAndAdditionalDataSync());
  2173. }
  2174. /**
  2175. * <p>
  2176. * Identifies primary data.
  2177. * </p>
  2178. */
  2179. getPrimaryData()
  2180. {
  2181. return this.auto_PrimaryData;
  2182. }
  2183. /**
  2184. * <p>
  2185. * Identifies primary data.
  2186. * </p>
  2187. */
  2188. setPrimaryData(value)
  2189. {
  2190. this.getJavaClass().setPrimaryDataSync(value.getJavaClass());
  2191. this.auto_PrimaryData = value;
  2192. }
  2193. auto_PrimaryData;
  2194. /**
  2195. * <p>
  2196. * Identifies secondary and additional supplemental data.
  2197. * </p>
  2198. */
  2199. getSecondaryAndAdditionalData()
  2200. {
  2201. return this.auto_SecondaryAndAdditionalData;
  2202. }
  2203. /**
  2204. * <p>
  2205. * Identifies secondary and additional supplemental data.
  2206. * </p>
  2207. */
  2208. setSecondaryAndAdditionalData(value)
  2209. {
  2210. this.getJavaClass().setSecondaryAndAdditionalDataSync(value.getJavaClass());
  2211. this.auto_SecondaryAndAdditionalData = value;
  2212. }
  2213. auto_SecondaryAndAdditionalData;
  2214. /**
  2215. * <p>
  2216. * Constructs codetext
  2217. * </p>
  2218. *
  2219. * @return Constructed codetext
  2220. */
  2221. getConstructedCodetext()
  2222. {
  2223. return this.getJavaClass().getConstructedCodetextSync();
  2224. }
  2225. /**
  2226. * <p>
  2227. * Initializes instance from constructed codetext.
  2228. * </p>
  2229. *
  2230. * @param constructedCodetext Constructed codetext.
  2231. */
  2232. initFromString(constructedCodetext)
  2233. {
  2234. this.getJavaClass().initFromStringSync(constructedCodetext);
  2235. }
  2236. /**
  2237. * <p>
  2238. * Returns a value indicating whether this instance is equal to a specified {@code HIBCLICCombinedCodetext} value.
  2239. * </p>
  2240. *
  2241. * @param obj An {@code HIBCLICCombinedCodetext} value to compare to this instance.
  2242. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2243. */
  2244. equals(obj)
  2245. {
  2246. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2247. }
  2248. /**
  2249. * <p>
  2250. * Returns the hash code for this instance.
  2251. * </p>
  2252. *
  2253. * @return A 32-bit signed integer hash code.
  2254. */
  2255. hashCode()
  2256. {
  2257. return this.getJavaClass().hashCodeSync();
  2258. }
  2259. }
  2260. /**
  2261. * <p>
  2262. * Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary data.
  2263. * </p>
  2264. * This sample shows how to encode and decode HIBC LIC using HIBCLICPrimaryCodetext.
  2265. * @example
  2266. * let complexCodetext = new HIBCLICPrimaryCodetext();
  2267. * complexCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC);
  2268. * complexCodetext.setData(new PrimaryData());
  2269. * complexCodetext.getData().setProductOrCatalogNumber("12345");
  2270. * complexCodetext.getData().setLabelerIdentificationCode("A999");
  2271. * complexCodetext.getData().setUnitOfMeasureID(1);
  2272. * let generator = new ComplexBarcodeGenerator(complexCodetext);
  2273. * let image = generator.generateBarCodeImage(BarCodeImageFormat.PNG);
  2274. * let reader = new BarCodeReader(image, null, DecodeType.HIBCQRLIC);
  2275. * reader.readBarCodes();
  2276. * let codetext = reader.getFoundBarCodes()[0].getCodeText();
  2277. * let result = ComplexCodetextReader.tryDecodeHIBCLIC(codetext) ;
  2278. * print("Product or catalog number: " + result.getData().getProductOrCatalogNumber());
  2279. * print("Labeler identification code: " + result.getData().getLabelerIdentificationCode());
  2280. * print("Unit of measure ID: " + result.getData().getUnitOfMeasureID());
  2281. */
  2282. class HIBCLICPrimaryDataCodetext extends HIBCLICComplexCodetext
  2283. {
  2284. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwHIBCLICPrimaryDataCodetext";
  2285. constructor()
  2286. {
  2287. let java_class_link = java.import(HIBCLICPrimaryDataCodetext.JAVA_CLASS_NAME);
  2288. let javaClass = new java_class_link();
  2289. super(javaClass);
  2290. }
  2291. static construct(java_class)
  2292. {
  2293. let obj = new HIBCLICPrimaryDataCodetext();
  2294. obj.setJavaClass(java_class);
  2295. return obj;
  2296. }
  2297. init()
  2298. {
  2299. this.data = PrimaryData.construct(this.getJavaClass().getDataSync());
  2300. }
  2301. data;
  2302. /**
  2303. * <p>
  2304. * Identifies primary data.
  2305. * </p>
  2306. */
  2307. getData()
  2308. {
  2309. return this.data;
  2310. }
  2311. /**
  2312. * <p>
  2313. * Identifies primary data.
  2314. * </p>
  2315. */
  2316. setData(value)
  2317. {
  2318. this.getJavaClass().setDataSync(value.getJavaClass());
  2319. this.data = value;
  2320. }
  2321. /**
  2322. * <p>
  2323. * Constructs codetext
  2324. * </p>
  2325. *
  2326. * @return Constructed codetext
  2327. */
  2328. getConstructedCodetext()
  2329. {
  2330. return this.getJavaClass().getConstructedCodetextSync();
  2331. }
  2332. /**
  2333. * <p>
  2334. * Initializes instance from constructed codetext.
  2335. * </p>
  2336. *
  2337. * @param constructedCodetext Constructed codetext.
  2338. */
  2339. initFromString(constructedCodetext)
  2340. {
  2341. this.getJavaClass().initFromStringSync(constructedCodetext);
  2342. }
  2343. /**
  2344. * <p>
  2345. * Returns a value indicating whether this instance is equal to a specified {@code HIBCLICPrimaryDataCodetext} value.
  2346. * </p>
  2347. *
  2348. * @param obj An {@code HIBCLICPrimaryDataCodetext} value to compare to this instance.
  2349. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2350. */
  2351. equals(obj)
  2352. {
  2353. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2354. }
  2355. /**
  2356. * <p>
  2357. * Returns the hash code for this instance.
  2358. * </p>
  2359. *
  2360. * @return A 32-bit signed integer hash code.
  2361. */
  2362. hashCode()
  2363. {
  2364. return this.getJavaClass().hashCodeSync();
  2365. }
  2366. }
  2367. /**
  2368. * Class for encoding and decoding the text embedded in the HIBC LIC code which stores seconday data.
  2369. * @example
  2370. * This sample shows how to encode and decode HIBC LIC using HIBCLICSecondaryAndAdditionalDataCodetext.
  2371. *
  2372. * @code
  2373. * let complexCodetext = new HIBCLICSecondaryAndAdditionalDataCodetext();
  2374. * complexCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC);
  2375. * complexCodetext.setLinkCharacter('L');
  2376. * complexCodetext.setData(new SecondaryAndAdditionalData());
  2377. * complexCodetext.getData().setExpiryDate(new Date());
  2378. * complexCodetext.getData().setExpiryDateFormat(HIBCLICDateFormat.MMDDYY);
  2379. * complexCodetext.getData().setQuantity(30);
  2380. * complexCodetext.getData().setLotNumber("LOT123");
  2381. * complexCodetext.getData().setSerialNumber("SERIAL123");
  2382. * complexCodetext.getData().setDateOfManufacture(new Date());
  2383. * let generator = new ComplexBarcodeGenerator(complexCodetext);
  2384. * let image = generator.generateBarCodeImage(BarcodeImageFormat.PNG);
  2385. * let reader = new BarCodeReader(image, null, DecodeType.HIBCQRLIC);
  2386. * reader.readBarCodes();
  2387. * codetext = reader.getFoundBarCodes()[0].getCodeText();
  2388. * result = ComplexCodetextReader.tryDecodeHIBCLIC(codetext);
  2389. * print("Expiry date: " + result.getData().getExpiryDate());
  2390. * print("Quantity: " + result.getData().getQuantity());
  2391. * print("Lot number: " + result.getData().getLotNumber());
  2392. * print("Serial number: " + result.getData().getSerialNumber());
  2393. * print("Date of manufacture: " + result.getData().getDateOfManufacture());
  2394. * </code>
  2395. * </example>
  2396. */
  2397. class HIBCLICSecondaryAndAdditionalDataCodetext extends HIBCLICComplexCodetext
  2398. {
  2399. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwHIBCLICSecondaryAndAdditionalDataCodetext";
  2400. data;
  2401. constructor()
  2402. {
  2403. let java_class_link = java.import(HIBCLICSecondaryAndAdditionalDataCodetext.JAVA_CLASS_NAME);
  2404. let javaClass = new java_class_link();
  2405. super(javaClass);
  2406. }
  2407. static construct(java_class)
  2408. {
  2409. let obj = new HIBCLICSecondaryAndAdditionalDataCodetext();
  2410. obj.setJavaClass(java_class);
  2411. return obj;
  2412. }
  2413. /**
  2414. * <p>
  2415. * Identifies secodary and additional supplemental data.
  2416. * </p>
  2417. */
  2418. getData()
  2419. {
  2420. return this.data;
  2421. }
  2422. /**
  2423. * <p>
  2424. * Identifies secodary and additional supplemental data.
  2425. * </p>
  2426. */
  2427. setData(value)
  2428. {
  2429. this.getJavaClass().setDataSync(value.getJavaClass());
  2430. this.data = value;
  2431. }
  2432. /**
  2433. * <p>
  2434. * Identifies link character.
  2435. * </p>
  2436. */
  2437. getLinkCharacter()
  2438. {
  2439. return this.getJavaClass().getLinkCharacterSync();
  2440. }
  2441. /**
  2442. * <p>
  2443. * Identifies link character.
  2444. * </p>
  2445. */
  2446. setLinkCharacter(value)
  2447. {
  2448. this.getJavaClass().setLinkCharacterSync(value);
  2449. }
  2450. /**
  2451. * <p>
  2452. * Constructs codetext
  2453. * </p>
  2454. *
  2455. * @return Constructed codetext
  2456. */
  2457. getConstructedCodetext()
  2458. {
  2459. return this.getJavaClass().getConstructedCodetextSync();
  2460. }
  2461. /**
  2462. * <p>
  2463. * Initializes instance from constructed codetext.
  2464. * </p>
  2465. *
  2466. * @param constructedCodetext Constructed codetext.
  2467. */
  2468. initFromString(constructedCodetext)
  2469. {
  2470. this.getJavaClass().initFromStringSync(constructedCodetext);
  2471. }
  2472. /**
  2473. * <p>
  2474. * Returns a value indicating whether this instance is equal to a specified {@code HIBCLICSecondaryAndAdditionalDataCodetext} value.
  2475. * </p>
  2476. *
  2477. * @param obj An {@code HIBCLICSecondaryAndAdditionalDataCodetext} value to compare to this instance.
  2478. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2479. */
  2480. equals(obj)
  2481. {
  2482. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2483. }
  2484. /**
  2485. * <p>
  2486. * Returns the hash code for this instance.
  2487. * </p>
  2488. *
  2489. * @return A 32-bit signed integer hash code.
  2490. */
  2491. hashCode()
  2492. {
  2493. return this.getJavaClass().hashCodeSync();
  2494. }
  2495. init()
  2496. {
  2497. this.data = SecondaryAndAdditionalData.construct(this.getJavaClass().getDataSync());
  2498. }
  2499. }
  2500. /**
  2501. * <p>
  2502. * Class for encoding and decoding the text embedded in the HIBC PAS code.
  2503. * @example
  2504. *
  2505. * This sample shows how to encode and decode HIBC PAS using HIBCPASCodetext.
  2506. *
  2507. * let complexCodetext = new HIBCPASComplexCodetext();
  2508. * complexCodetext.setDataLocation(HIBCPASDataLocation.PATIENT);
  2509. * complexCodetext.addRecord(HIBCPASDataType.LABELER_IDENTIFICATION_CODE, "A123");
  2510. * complexCodetext.addRecord(HIBCPASDataType.MANUFACTURER_SERIAL_NUMBER, "SERIAL123");
  2511. * complexCodetext.setBarcodeType(EncodeTypes.HIBC_DATA_MATRIX_PAS);
  2512. * let generator = new ComplexBarcodeGenerator(complexCodetext);
  2513. * BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(BarCodeImageFormat.PNG), null, DecodeType.HIBC_DATA_MATRIX_PAS);
  2514. * reader.readBarCodes();
  2515. * let codetext = reader.getFoundBarCodes()[0].getCodeText();
  2516. * let readCodetext = ComplexCodetextReader.tryDecodeHIBCPAS(codetext);
  2517. * print("Data location: " + readCodetext.getDataLocation());
  2518. * print("Data type: " + readCodetext.getRecords()[0].getDataType());
  2519. * print("Data: " + readCodetext.getRecords()[0].getData());
  2520. * print("Data type: " + readCodetext.getRecords()[1].getDataType());
  2521. * print("Data: " + readCodetext.getRecords()[1].getData());
  2522. */
  2523. class HIBCPASCodetext extends IComplexCodetext
  2524. {
  2525. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwHIBCPASCodetext";
  2526. constructor()
  2527. {
  2528. let java_class_link = java.import(HIBCPASCodetext.JAVA_CLASS_NAME);
  2529. let javaClass = new java_class_link();
  2530. super(javaClass);
  2531. }
  2532. /**
  2533. * <p>
  2534. * HIBCPASRecord constructor
  2535. * </p>
  2536. */
  2537. static construct(javaClass)
  2538. {
  2539. let obj = new HIBCPASCodetext();
  2540. obj.setJavaClass(javaClass);
  2541. return obj;
  2542. }
  2543. init()
  2544. {
  2545. }
  2546. /**
  2547. * <p>
  2548. * Gets or sets barcode type. HIBC PAS codetext can be encoded using HIBCCode39PAS, HIBCCode128PAS, HIBCAztec:PAS, HIBCDataMatrixPAS and HIBCQRPAS encode types.
  2549. * Default value: HIBCCode39PAS.
  2550. * </p>
  2551. * @return Barcode type.
  2552. */
  2553. setBarcodeType(value)
  2554. {
  2555. this.getJavaClass().setBarcodeTypeSync(value);
  2556. }
  2557. /**
  2558. * <p>
  2559. * Identifies data location.
  2560. * </p>
  2561. */
  2562. getDataLocation()
  2563. {
  2564. return this.getJavaClass().getDataLocationSync();
  2565. }
  2566. /**
  2567. * <p>
  2568. * Identifies data location.
  2569. * </p>
  2570. */
  2571. setDataLocation(value)
  2572. {
  2573. this.getJavaClass().setDataLocationSync(value);
  2574. }
  2575. /**
  2576. * <p>
  2577. * Gets records list
  2578. * </p>
  2579. * @return List of records
  2580. */
  2581. getRecords()
  2582. {
  2583. let _array = [];
  2584. let mwRecordsList = this.getJavaClass().getRecordsSync();
  2585. let listSize = mwRecordsList.sizeSync();
  2586. for (let i = 0; i < listSize; i++)
  2587. {
  2588. let mwhibcpasRecord = mwRecordsList.getSync(i);
  2589. _array.push(HIBCPASRecord.construct(mwhibcpasRecord));
  2590. }
  2591. return _array;
  2592. }
  2593. /**
  2594. * <p>
  2595. * Adds new record
  2596. * </p>
  2597. * @param dataType Type of data
  2598. * @param data Data string
  2599. */
  2600. addRecord(dataType, data)
  2601. {
  2602. this.getJavaClass().addRecordSync(dataType, data);
  2603. }
  2604. /**
  2605. * <p>
  2606. * Adds new record
  2607. * </p>
  2608. * @param record Record to be added
  2609. */
  2610. addHIBCPASRecord(record)
  2611. {
  2612. this.getJavaClass().addRecordSync(record.getJavaClass());
  2613. }
  2614. /**
  2615. * <p>
  2616. * Clears records list
  2617. * </p>
  2618. */
  2619. clear()
  2620. {
  2621. this.getJavaClass().clearSync();
  2622. }
  2623. /**
  2624. * <p>
  2625. * Gets barcode type.
  2626. * </p>
  2627. * @return Barcode type.
  2628. */
  2629. getBarcodeType()
  2630. {
  2631. return this.getJavaClass().getBarcodeTypeSync();
  2632. }
  2633. /**
  2634. * <p>
  2635. * Constructs codetext
  2636. * </p>
  2637. * @return Constructed codetext
  2638. */
  2639. getConstructedCodetext()
  2640. {
  2641. return this.getJavaClass().getConstructedCodetextSync();
  2642. }
  2643. /**
  2644. * <p>
  2645. * Initializes instance from constructed codetext.
  2646. * </p>
  2647. * @param constructedCodetext Constructed codetext.
  2648. */
  2649. initFromString(constructedCodetext)
  2650. {
  2651. this.getJavaClass().initFromStringSync(constructedCodetext);
  2652. }
  2653. /**
  2654. * <p>
  2655. * Returns a value indicating whether this instance is equal to a specified {@code HIBCPASCodetext} value.
  2656. * </p>
  2657. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2658. * @param obj An {@code HIBCPASCodetext} value to compare to this instance.
  2659. */
  2660. equals(obj)
  2661. {
  2662. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2663. }
  2664. /**
  2665. * <p>
  2666. * Returns the hash code for this instance.
  2667. * </p>
  2668. * @return A 32-bit signed integer hash code.
  2669. */
  2670. hashCode()
  2671. {
  2672. return this.getJavaClass().hashCodeSync();
  2673. }
  2674. }
  2675. /**
  2676. * <p>
  2677. * Class for storing HIBC PAS record.
  2678. * </p>
  2679. */
  2680. class HIBCPASRecord extends joint.BaseJavaClass
  2681. {
  2682. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwHIBCPASRecord";
  2683. /**
  2684. * <p>
  2685. * HIBCPASRecord constructor
  2686. * </p>
  2687. *
  2688. * @param dataType Type of data.
  2689. * @param data Data string.
  2690. */
  2691. constructor(dataType, data)
  2692. {
  2693. let java_class_link = java.import(HIBCPASRecord.JAVA_CLASS_NAME);
  2694. let javaClass = new java_class_link(dataType, data);
  2695. super(javaClass);
  2696. }
  2697. /**
  2698. * <p>
  2699. * HIBCPASRecord constructor
  2700. * </p>
  2701. */
  2702. static construct(javaClass)
  2703. {
  2704. let obj = new HIBCPASRecord(0,"");
  2705. obj.setJavaClass(javaClass);
  2706. return obj;
  2707. }
  2708. init()
  2709. {}
  2710. /**
  2711. * <p>
  2712. * Identifies data type.
  2713. * </p>
  2714. */
  2715. getDataType()
  2716. {
  2717. return this.getJavaClass().getDataTypeSync();
  2718. }
  2719. /**
  2720. * <p>
  2721. * Identifies data type.
  2722. * </p>
  2723. */
  2724. setDataType(value)
  2725. {
  2726. this.getJavaClass().setDataTypeSync(value);
  2727. }
  2728. /**
  2729. * <p>
  2730. * Identifies data.
  2731. * </p>
  2732. */
  2733. getData()
  2734. {
  2735. return this.getJavaClass().getDataSync();
  2736. }
  2737. /**
  2738. * <p>
  2739. * Identifies data.
  2740. * </p>
  2741. */
  2742. setData(value)
  2743. {
  2744. this.getJavaClass().setDataSync(value);
  2745. }
  2746. /**
  2747. * <p>
  2748. * Returns a value indicating whether this instance is equal to a specified {@code HIBCPASDataType} value.
  2749. * </p>
  2750. *
  2751. * @param obj An {@code HIBCPASDataType} value to compare to this instance.
  2752. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2753. */
  2754. equals(obj)
  2755. {
  2756. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2757. }
  2758. /**
  2759. * <p>
  2760. * Returns the hash code for this instance.
  2761. * </p>
  2762. *
  2763. * @return A 32-bit signed integer hash code.
  2764. */
  2765. hashCode()
  2766. {
  2767. return this.getJavaClass().hashCodeSync();
  2768. }
  2769. }
  2770. /**
  2771. * <p>
  2772. * Class for storing HIBC LIC primary data.
  2773. * </p>
  2774. */
  2775. class PrimaryData extends joint.BaseJavaClass
  2776. {
  2777. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwPrimaryData";
  2778. constructor()
  2779. {
  2780. let java_class_link = java.import(PrimaryData.JAVA_CLASS_NAME);
  2781. let javaClass = new java_class_link();
  2782. super(javaClass);
  2783. }
  2784. static construct(java_class)
  2785. {
  2786. let obj = new PrimaryData();
  2787. obj.setJavaClass(java_class);
  2788. return obj;
  2789. }
  2790. /**
  2791. * <p>
  2792. * Identifies date of labeler identification code.<br>
  2793. * Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic.
  2794. * </p>
  2795. */
  2796. getLabelerIdentificationCode()
  2797. {
  2798. return this.getJavaClass().getLabelerIdentificationCodeSync();
  2799. }
  2800. /**
  2801. * <p>
  2802. * Identifies date of labeler identification code.<br>
  2803. * Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic.
  2804. * </p>
  2805. */
  2806. setLabelerIdentificationCode(value)
  2807. {
  2808. this.getJavaClass().setLabelerIdentificationCodeSync(value);
  2809. }
  2810. /**
  2811. * <p>
  2812. * Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length.
  2813. * </p>
  2814. */
  2815. getProductOrCatalogNumber()
  2816. {
  2817. return this.getJavaClass().getProductOrCatalogNumberSync();
  2818. }
  2819. /**
  2820. * <p>
  2821. * Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length.
  2822. * </p>
  2823. */
  2824. setProductOrCatalogNumber(value)
  2825. {
  2826. this.getJavaClass().setProductOrCatalogNumberSync(value);
  2827. }
  2828. /**
  2829. * <p>
  2830. * Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9.
  2831. * </p>
  2832. */
  2833. getUnitOfMeasureID()
  2834. {
  2835. return this.getJavaClass().getUnitOfMeasureIDSync();
  2836. }
  2837. /**
  2838. * <p>
  2839. * Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9.
  2840. * </p>
  2841. */
  2842. setUnitOfMeasureID(value)
  2843. {
  2844. this.getJavaClass().setUnitOfMeasureIDSync(value);
  2845. }
  2846. /**
  2847. * <p>
  2848. * Converts data to string format according HIBC LIC specification.
  2849. * </p>
  2850. *
  2851. * @return Formatted string.
  2852. */
  2853. toString()
  2854. {
  2855. return this.getJavaClass().toStringSync();
  2856. }
  2857. /**
  2858. * <p>
  2859. * Instantiates primary data from string format according HIBC LIC specification.
  2860. * </p>
  2861. *
  2862. * @param primaryDataCodetext Formatted string.
  2863. */
  2864. parseFromString(primaryDataCodetext)
  2865. {
  2866. this.getJavaClass().parseFromStringSync(primaryDataCodetext);
  2867. }
  2868. /**
  2869. * <p>
  2870. * Returns a value indicating whether this instance is equal to a specified {@code PrimaryData} value.
  2871. * </p>
  2872. *
  2873. * @param obj An {@code PrimaryData} value to compare to this instance.
  2874. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  2875. */
  2876. equals(obj)
  2877. {
  2878. return this.getJavaClass().equalsSync(obj.getJavaClass());
  2879. }
  2880. /**
  2881. * <p>
  2882. * Returns the hash code for this instance.
  2883. * </p>
  2884. *
  2885. * @return A 32-bit signed integer hash code.
  2886. */
  2887. hashCode()
  2888. {
  2889. return this.getJavaClass().hashCodeSync();
  2890. }
  2891. init()
  2892. {}
  2893. }
  2894. /**
  2895. * <p>
  2896. * Class for storing HIBC LIC secondary and additional data.
  2897. * </p>
  2898. */
  2899. class SecondaryAndAdditionalData extends joint.BaseJavaClass
  2900. {
  2901. static JAVA_CLASS_NAME = "com.aspose.mw.barcode.complexbarcode.MwSecondaryAndAdditionalData";
  2902. constructor()
  2903. {
  2904. let java_class_link = java.import(SecondaryAndAdditionalData.JAVA_CLASS_NAME);
  2905. let javaClass = new java_class_link();
  2906. super(javaClass);
  2907. }
  2908. static construct(java_class)
  2909. {
  2910. let obj = new SecondaryAndAdditionalData();
  2911. obj.setJavaClass(java_class);
  2912. return obj;
  2913. }
  2914. /**
  2915. * <p>
  2916. * Identifies expiry date format.
  2917. * </p>
  2918. */
  2919. getExpiryDateFormat()
  2920. {
  2921. return this.getJavaClass().getExpiryDateFormatSync();
  2922. }
  2923. /**
  2924. * <p>
  2925. * Identifies expiry date format.
  2926. * </p>
  2927. */
  2928. setExpiryDateFormat(value)
  2929. {
  2930. this.getJavaClass().setExpiryDateFormatSync(value);
  2931. }
  2932. /**
  2933. * <p>
  2934. * Identifies expiry date. Will be used if ExpiryDateFormat is not set to None.
  2935. * </p>
  2936. */
  2937. getExpiryDate()
  2938. {
  2939. return new Date(this.getJavaClass().getExpiryDateSync() * 1000);
  2940. }
  2941. /**
  2942. * <p>
  2943. * Identifies expiry date. Will be used if ExpiryDateFormat is not set to None.
  2944. * </p>
  2945. */
  2946. setExpiryDate(value)
  2947. {
  2948. this.getJavaClass().setExpiryDateSync((value.getTime() / 1000).toString());
  2949. }
  2950. /**
  2951. * <p>
  2952. * Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. .
  2953. * </p>
  2954. */
  2955. getLotNumber()
  2956. {
  2957. return this.getJavaClass().getLotNumberSync();
  2958. }
  2959. /**
  2960. * <p>
  2961. * Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. .
  2962. * </p>
  2963. */
  2964. setLotNumber(value)
  2965. {
  2966. if(value == null)
  2967. value = "null";
  2968. this.getJavaClass().setLotNumberSync(value);
  2969. }
  2970. /**
  2971. * <p>
  2972. * Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length.
  2973. * </p>
  2974. */
  2975. getSerialNumber()
  2976. {
  2977. return this.getJavaClass().getSerialNumberSync();
  2978. }
  2979. /**
  2980. * <p>
  2981. * Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length.
  2982. * </p>
  2983. */
  2984. setSerialNumber(value)
  2985. {
  2986. if(value == null)
  2987. value = "null";
  2988. this.getJavaClass().setSerialNumberSync(value);
  2989. }
  2990. /**
  2991. * <p>
  2992. * Identifies date of manufacture.
  2993. * Date of manufacture can be set to DateTime.MinValue in order not to use this field.
  2994. * Default value: DateTime.MinValue
  2995. * </p>
  2996. */
  2997. getDateOfManufacture()
  2998. {
  2999. return new Date(this.getJavaClass().getDateOfManufactureSync() * 1000);
  3000. }
  3001. /**
  3002. * <p>
  3003. * Identifies date of manufacture.
  3004. * Date of manufacture can be set to DateTime.MinValue in order not to use this field.
  3005. * Default value: DateTime.MinValue
  3006. * </p>
  3007. */
  3008. setDateOfManufacture(value)
  3009. {
  3010. this.getJavaClass().setDateOfManufactureSync((value.getTime() / 1000).toString());
  3011. }
  3012. /**
  3013. * Identifies quantity, must be integer value from 0 to 500.<br>
  3014. * Quantity can be set to -1 in order not to use this field.<br>
  3015. * Default value: -1
  3016. */
  3017. getQuantity()
  3018. {
  3019. return this.getJavaClass().getQuantitySync();
  3020. }
  3021. /**
  3022. * <p>
  3023. * Identifies quantity, must be integer value from 0 to 500.
  3024. * Quantity can be set to -1 in order not to use this field.
  3025. * Default value: -1
  3026. * </p>
  3027. */
  3028. setQuantity(value)
  3029. {
  3030. this.getJavaClass().setQuantitySync(value);
  3031. }
  3032. /**
  3033. * <p>
  3034. * Converts data to string format according HIBC LIC specification.
  3035. * </p>
  3036. *
  3037. * @return Formatted string.
  3038. */
  3039. toString()
  3040. {
  3041. return this.getJavaClass().toStringSync();
  3042. }
  3043. /**
  3044. * <p>
  3045. * Instantiates secondary and additional supplemental data from string format according HIBC LIC specification.
  3046. * </p>
  3047. *
  3048. * @param secondaryDataCodetext Formatted string.
  3049. */
  3050. parseFromString(secondaryDataCodetext)
  3051. {
  3052. this.getJavaClass().parseFromStringSync(secondaryDataCodetext);
  3053. }
  3054. /**
  3055. * <p>
  3056. * Returns a value indicating whether this instance is equal to a specified {@code SecondaryAndAdditionalData} value.
  3057. * </p>
  3058. *
  3059. * @param obj An {@code SecondaryAndAdditionalData} value to compare to this instance.
  3060. * @return {@code <b>true</b>} if obj has the same value as this instance; otherwise, {@code <b>false</b>}.
  3061. */
  3062. equals(obj)
  3063. {
  3064. return this.getJavaClass().equalsSync(obj.getJavaClass());
  3065. }
  3066. /**
  3067. * <p>
  3068. * Returns the hash code for this instance.
  3069. * </p>
  3070. *
  3071. * @return A 32-bit signed integer hash code.
  3072. */
  3073. hashCode()
  3074. {
  3075. return this.getJavaClass().hashCodeSync();
  3076. }
  3077. init()
  3078. {}
  3079. }
  3080. /**
  3081. * 2D Mailmark Type defines size of Data Matrix barcode
  3082. * @enum
  3083. */
  3084. Mailmark2DType =
  3085. {
  3086. /**
  3087. * Auto determine
  3088. */
  3089. AUTO: 0,
  3090. /**
  3091. * 24 x 24 modules
  3092. */
  3093. TYPE_7: 1,
  3094. /**
  3095. * 32 x 32 modules
  3096. */
  3097. TYPE_9: 2,
  3098. /**
  3099. * 16 x 48 modules
  3100. */
  3101. TYPE_29: 3
  3102. }
  3103. /**
  3104. * <p>
  3105. * Specifies the different types of date formats for HIBC LIC.
  3106. * </p>
  3107. */
  3108. HIBCLICDateFormat =
  3109. {
  3110. /**
  3111. * <p>
  3112. * YYYYMMDD format. Will be encoded in additional supplemental data.
  3113. * </p>
  3114. */
  3115. YYYYMMDD: 0,
  3116. /**
  3117. * <p>
  3118. * MMYY format.
  3119. * </p>
  3120. */
  3121. MMYY: 1,
  3122. /**
  3123. * <p>
  3124. * MMDDYY format.
  3125. * </p>
  3126. */
  3127. MMDDYY: 2,
  3128. /**
  3129. * <p>
  3130. * YYMMDD format.
  3131. * </p>
  3132. */
  3133. YYMMDD: 3,
  3134. /**
  3135. * <p>
  3136. * YYMMDDHH format.
  3137. * </p>
  3138. */
  3139. YYMMDDHH: 4,
  3140. /**
  3141. * <p>
  3142. * Julian date format.
  3143. * </p>
  3144. */
  3145. YYJJJ: 5,
  3146. /**
  3147. * <p>
  3148. * Julian date format with hours.
  3149. * </p>
  3150. */
  3151. YYJJJHH: 6,
  3152. /**
  3153. * <p>
  3154. * Do not encode expiry date.
  3155. * </p>
  3156. */
  3157. NONE:7
  3158. }
  3159. /**
  3160. * <p>
  3161. * HIBC PAS data location types.
  3162. * </p>
  3163. */
  3164. HIBCPASDataLocation =
  3165. {
  3166. /**
  3167. * <p>
  3168. * A - Patient
  3169. * </p>
  3170. */
  3171. PATIENT: 0,
  3172. /**
  3173. * <p>
  3174. * B - Patient Care Record
  3175. * </p>
  3176. */
  3177. PATIENT_CARE_RECORD: 1,
  3178. /**
  3179. * <p>
  3180. * C - Specimen Container
  3181. * </p>
  3182. */
  3183. SPECIMEN_CONTAINER: 2,
  3184. /**
  3185. * <p>
  3186. * D - Direct Patient Image Item
  3187. * </p>
  3188. */
  3189. DIRECT_PATIENT_IMAGE_ITEM: 3,
  3190. /**
  3191. * <p>
  3192. * E - Business Record
  3193. * </p>
  3194. */
  3195. BUSINESS_RECORD: 4,
  3196. /**
  3197. * <p>
  3198. * F - Medical Administration Record
  3199. * </p>
  3200. */
  3201. MEDICAL_ADMINISTRATION_RECORD: 5,
  3202. /**
  3203. * <p>
  3204. * G - Library Reference Material
  3205. * </p>
  3206. */
  3207. LIBRARY_REFERENCE_MATERIAL: 6,
  3208. /**
  3209. * <p>
  3210. * H - Devices and Materials
  3211. * </p>
  3212. */
  3213. DEVICES_AND_MATERIALS: 7,
  3214. /**
  3215. * <p>
  3216. * I - Identification Card
  3217. * </p>
  3218. */
  3219. IDENTIFICATION_CARD: 8,
  3220. /**
  3221. * <p>
  3222. * J - Product Container
  3223. * </p>
  3224. */
  3225. PRODUCT_CONTAINER: 9,
  3226. /**
  3227. * <p>
  3228. * K - Asset data type
  3229. * </p>
  3230. */
  3231. ASSET: 10,
  3232. /**
  3233. * <p>
  3234. * L - Surgical Instrument
  3235. * </p>
  3236. */
  3237. SURGICAL_INSTRUMENT: 11,
  3238. /**
  3239. * <p>
  3240. * Z - User Defined
  3241. * </p>
  3242. */
  3243. USER_DEFINED: 25
  3244. }
  3245. /**
  3246. * <p>
  3247. * HIBC PAS record's data types.
  3248. * </p>
  3249. */
  3250. HIBCPASDataType =
  3251. {
  3252. /**
  3253. * <p>
  3254. * A - Labeler Identification Code
  3255. * </p>
  3256. */
  3257. LABELER_IDENTIFICATION_CODE: 0,
  3258. /**
  3259. * <p>
  3260. * B - Service Identification
  3261. * </p>
  3262. */
  3263. SERVICE_IDENTIFICATION: 1,
  3264. /**
  3265. * <p>
  3266. * C - Patient Identification
  3267. * </p>
  3268. */
  3269. PATIENT_IDENTIFICATION: 2,
  3270. /**
  3271. * <p>
  3272. * D - Specimen Identification
  3273. * </p>
  3274. */
  3275. SPECIMEN_IDENTIFICATION: 3,
  3276. /**
  3277. * <p>
  3278. * E - Personnel Identification
  3279. * </p>
  3280. */
  3281. PERSONNEL_IDENTIFICATION: 4,
  3282. /**
  3283. * <p>
  3284. * F - Administrable Product Identification
  3285. * </p>
  3286. */
  3287. ADMINISTRABLE_PRODUCT_IDENTIFICATION: 5,
  3288. /**
  3289. * <p>
  3290. * G - Implantable Product Information
  3291. * </p>
  3292. */
  3293. IMPLANTABLE_PRODUCT_INFORMATION: 6,
  3294. /**
  3295. * <p>
  3296. * H - Hospital Item Identification
  3297. * </p>
  3298. */
  3299. HOSPITAL_ITEM_IDENTIFICATION: 7,
  3300. /**
  3301. * <p>
  3302. * I - Medical Procedure Identification
  3303. * </p>
  3304. */
  3305. MEDICAL_PROCEDURE_IDENTIFICATION: 8,
  3306. /**
  3307. * <p>
  3308. * J - Reimbursement Category
  3309. * </p>
  3310. */
  3311. REIMBURSEMENT_CATEGORY: 9,
  3312. /**
  3313. * <p>
  3314. * K - Blood Product Identification
  3315. * </p>
  3316. */
  3317. BLOOD_PRODUCT_IDENTIFICATION: 10,
  3318. /**
  3319. * <p>
  3320. * L - Demographic Data
  3321. * </p>
  3322. */
  3323. DEMOGRAPHIC_DATA: 11,
  3324. /**
  3325. * <p>
  3326. * M - DateTime in YYYDDDHHMMG format
  3327. * </p>
  3328. */
  3329. DATE_TIME: 12,
  3330. /**
  3331. * <p>
  3332. * N - Asset Identification
  3333. * </p>
  3334. */
  3335. ASSET_IDENTIFICATION: 13,
  3336. /**
  3337. * <p>
  3338. * O - Purchase Order Number
  3339. * </p>
  3340. */
  3341. PURCHASE_ORDER_NUMBER: 14,
  3342. /**
  3343. * <p>
  3344. * P - Dietary Item Identification
  3345. * </p>
  3346. */
  3347. DIETARY_ITEM_IDENTIFICATION: 15,
  3348. /**
  3349. * <p>
  3350. * Q - Manufacturer Serial Number
  3351. * </p>
  3352. */
  3353. MANUFACTURER_SERIAL_NUMBER: 16,
  3354. /**
  3355. * <p>
  3356. * R - Library Materials Identification
  3357. * </p>
  3358. */
  3359. LIBRARY_MATERIALS_IDENTIFICATION: 17,
  3360. /**
  3361. * <p>
  3362. * S - Business Control Number
  3363. * </p>
  3364. */
  3365. BUSINESS_CONTROL_NUMBER: 18,
  3366. /**
  3367. * <p>
  3368. * T - Episode of Care Identification
  3369. * </p>
  3370. */
  3371. EPISODE_OF_CARE_IDENTIFICATION: 19,
  3372. /**
  3373. * <p>
  3374. * U - Health Industry Number
  3375. * </p>
  3376. */
  3377. HEALTH_INDUSTRY_NUMBER: 20,
  3378. /**
  3379. * <p>
  3380. * V - Patient Visit ID
  3381. * </p>
  3382. */
  3383. PATIENT_VISIT_ID: 21,
  3384. /**
  3385. * <p>
  3386. * X - XML Document
  3387. * </p>
  3388. */
  3389. XML_DOCUMENT: 22,
  3390. /**
  3391. * <p>
  3392. * Z - User Defined
  3393. * </p>
  3394. */
  3395. USER_DEFINED: 25
  3396. }
  3397. module.exports = {
  3398. SwissQRCodetext,
  3399. ComplexBarcodeGenerator,
  3400. ComplexCodetextReader,
  3401. AlternativeScheme,
  3402. Address,
  3403. AddressType,
  3404. SwissQRBill,
  3405. Mailmark2DCodetext,
  3406. MailmarkCodetext,
  3407. Mailmark2DType,
  3408. QrBillStandardVersion,
  3409. MaxiCodeStandardCodetext,
  3410. MaxiCodeSecondMessage,
  3411. MaxiCodeStructuredSecondMessage,
  3412. MaxiCodeCodetextMode3,
  3413. MaxiCodeCodetextMode2,
  3414. MaxiCodeCodetext,
  3415. HIBCLICCombinedCodetext,
  3416. HIBCLICComplexCodetext,
  3417. HIBCLICPrimaryDataCodetext,
  3418. HIBCLICSecondaryAndAdditionalDataCodetext,
  3419. HIBCPASCodetext,
  3420. HIBCPASRecord,
  3421. PrimaryData,
  3422. SecondaryAndAdditionalData,
  3423. HIBCLICDateFormat,
  3424. HIBCPASDataType
  3425. };