SchuleAbschnitte.js 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte = exports.SchuleAbschnitte = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. const Vector_1 = require("../../../java/util/Vector");
  6. class SchuleAbschnitte extends JavaObject_1.JavaObject {
  7. anzahlAbschnitte = 0;
  8. abschnittBez = "Halbjahr";
  9. bezAbschnitte = new Vector_1.Vector();
  10. constructor() {
  11. super();
  12. }
  13. isTranspiledInstanceOf(name) {
  14. return ['de.nrw.schule.svws.core.data.schule.SchuleAbschnitte'].includes(name);
  15. }
  16. static transpilerFromJSON(json) {
  17. const obj = JSON.parse(json);
  18. const result = new SchuleAbschnitte();
  19. if (typeof obj.anzahlAbschnitte === "undefined")
  20. throw new Error('invalid json format, missing attribute anzahlAbschnitte');
  21. result.anzahlAbschnitte = obj.anzahlAbschnitte;
  22. if (typeof obj.abschnittBez === "undefined")
  23. throw new Error('invalid json format, missing attribute abschnittBez');
  24. result.abschnittBez = obj.abschnittBez;
  25. if (!!obj.bezAbschnitte) {
  26. for (let elem of obj.bezAbschnitte) {
  27. result.bezAbschnitte?.add(elem);
  28. }
  29. }
  30. return result;
  31. }
  32. static transpilerToJSON(obj) {
  33. let result = '{';
  34. result += '"anzahlAbschnitte" : ' + obj.anzahlAbschnitte + ',';
  35. result += '"abschnittBez" : ' + '"' + obj.abschnittBez.valueOf() + '"' + ',';
  36. if (!obj.bezAbschnitte) {
  37. result += '[]';
  38. }
  39. else {
  40. result += '[ ';
  41. for (let i = 0; i < obj.bezAbschnitte.size(); i++) {
  42. let elem = obj.bezAbschnitte.get(i);
  43. result += '"' + elem + '"';
  44. if (i < obj.bezAbschnitte.size() - 1)
  45. result += ',';
  46. }
  47. result += ' ]' + ',';
  48. }
  49. result = result.slice(0, -1);
  50. result += '}';
  51. return result;
  52. }
  53. static transpilerToJSONPatch(obj) {
  54. let result = '{';
  55. if (typeof obj.anzahlAbschnitte !== "undefined") {
  56. result += '"anzahlAbschnitte" : ' + obj.anzahlAbschnitte + ',';
  57. }
  58. if (typeof obj.abschnittBez !== "undefined") {
  59. result += '"abschnittBez" : ' + '"' + obj.abschnittBez.valueOf() + '"' + ',';
  60. }
  61. if (typeof obj.bezAbschnitte !== "undefined") {
  62. if (!obj.bezAbschnitte) {
  63. result += '[]';
  64. }
  65. else {
  66. result += '[ ';
  67. for (let i = 0; i < obj.bezAbschnitte.size(); i++) {
  68. let elem = obj.bezAbschnitte.get(i);
  69. result += '"' + elem + '"';
  70. if (i < obj.bezAbschnitte.size() - 1)
  71. result += ',';
  72. }
  73. result += ' ]' + ',';
  74. }
  75. }
  76. result = result.slice(0, -1);
  77. result += '}';
  78. return result;
  79. }
  80. }
  81. exports.SchuleAbschnitte = SchuleAbschnitte;
  82. function cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte(obj) {
  83. return obj;
  84. }
  85. exports.cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte = cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte;
  86. //# sourceMappingURL=SchuleAbschnitte.js.map