ENMLeistung.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_enm_ENMLeistung = exports.ENMLeistung = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. const ENMTeilleistung_1 = require("../../../core/data/enm/ENMTeilleistung");
  6. const Vector_1 = require("../../../java/util/Vector");
  7. class ENMLeistung extends JavaObject_1.JavaObject {
  8. id = 0;
  9. lerngruppenID = 0;
  10. note = null;
  11. istSchriftlich = null;
  12. abiturfach = null;
  13. fehlstundenGesamt = null;
  14. fehlstundenUnentschuldigt = null;
  15. fachbezogeneBemerkungen = null;
  16. neueZuweisungKursart = null;
  17. teilleistungen = new Vector_1.Vector();
  18. constructor() {
  19. super();
  20. }
  21. isTranspiledInstanceOf(name) {
  22. return ['de.nrw.schule.svws.core.data.enm.ENMLeistung'].includes(name);
  23. }
  24. static transpilerFromJSON(json) {
  25. const obj = JSON.parse(json);
  26. const result = new ENMLeistung();
  27. if (typeof obj.id === "undefined")
  28. throw new Error('invalid json format, missing attribute id');
  29. result.id = obj.id;
  30. if (typeof obj.lerngruppenID === "undefined")
  31. throw new Error('invalid json format, missing attribute lerngruppenID');
  32. result.lerngruppenID = obj.lerngruppenID;
  33. result.note = typeof obj.note === "undefined" ? null : obj.note;
  34. result.istSchriftlich = typeof obj.istSchriftlich === "undefined" ? null : obj.istSchriftlich;
  35. result.abiturfach = typeof obj.abiturfach === "undefined" ? null : obj.abiturfach;
  36. result.fehlstundenGesamt = typeof obj.fehlstundenGesamt === "undefined" ? null : obj.fehlstundenGesamt;
  37. result.fehlstundenUnentschuldigt = typeof obj.fehlstundenUnentschuldigt === "undefined" ? null : obj.fehlstundenUnentschuldigt;
  38. result.fachbezogeneBemerkungen = typeof obj.fachbezogeneBemerkungen === "undefined" ? null : obj.fachbezogeneBemerkungen;
  39. result.neueZuweisungKursart = typeof obj.neueZuweisungKursart === "undefined" ? null : obj.neueZuweisungKursart;
  40. if (!!obj.teilleistungen) {
  41. for (let elem of obj.teilleistungen) {
  42. result.teilleistungen?.add(ENMTeilleistung_1.ENMTeilleistung.transpilerFromJSON(JSON.stringify(elem)));
  43. }
  44. }
  45. return result;
  46. }
  47. static transpilerToJSON(obj) {
  48. let result = '{';
  49. result += '"id" : ' + obj.id + ',';
  50. result += '"lerngruppenID" : ' + obj.lerngruppenID + ',';
  51. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  52. result += '"istSchriftlich" : ' + ((!obj.istSchriftlich) ? 'null' : obj.istSchriftlich.valueOf()) + ',';
  53. result += '"abiturfach" : ' + ((!obj.abiturfach) ? 'null' : obj.abiturfach.valueOf()) + ',';
  54. result += '"fehlstundenGesamt" : ' + ((!obj.fehlstundenGesamt) ? 'null' : obj.fehlstundenGesamt.valueOf()) + ',';
  55. result += '"fehlstundenUnentschuldigt" : ' + ((!obj.fehlstundenUnentschuldigt) ? 'null' : obj.fehlstundenUnentschuldigt.valueOf()) + ',';
  56. result += '"fachbezogeneBemerkungen" : ' + ((!obj.fachbezogeneBemerkungen) ? 'null' : '"' + obj.fachbezogeneBemerkungen.valueOf() + '"') + ',';
  57. result += '"neueZuweisungKursart" : ' + ((!obj.neueZuweisungKursart) ? 'null' : '"' + obj.neueZuweisungKursart.valueOf() + '"') + ',';
  58. if (!obj.teilleistungen) {
  59. result += '[]';
  60. }
  61. else {
  62. result += '[ ';
  63. for (let i = 0; i < obj.teilleistungen.size(); i++) {
  64. let elem = obj.teilleistungen.get(i);
  65. result += ENMTeilleistung_1.ENMTeilleistung.transpilerToJSON(elem);
  66. if (i < obj.teilleistungen.size() - 1)
  67. result += ',';
  68. }
  69. result += ' ]' + ',';
  70. }
  71. result = result.slice(0, -1);
  72. result += '}';
  73. return result;
  74. }
  75. static transpilerToJSONPatch(obj) {
  76. let result = '{';
  77. if (typeof obj.id !== "undefined") {
  78. result += '"id" : ' + obj.id + ',';
  79. }
  80. if (typeof obj.lerngruppenID !== "undefined") {
  81. result += '"lerngruppenID" : ' + obj.lerngruppenID + ',';
  82. }
  83. if (typeof obj.note !== "undefined") {
  84. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  85. }
  86. if (typeof obj.istSchriftlich !== "undefined") {
  87. result += '"istSchriftlich" : ' + ((!obj.istSchriftlich) ? 'null' : obj.istSchriftlich.valueOf()) + ',';
  88. }
  89. if (typeof obj.abiturfach !== "undefined") {
  90. result += '"abiturfach" : ' + ((!obj.abiturfach) ? 'null' : obj.abiturfach.valueOf()) + ',';
  91. }
  92. if (typeof obj.fehlstundenGesamt !== "undefined") {
  93. result += '"fehlstundenGesamt" : ' + ((!obj.fehlstundenGesamt) ? 'null' : obj.fehlstundenGesamt.valueOf()) + ',';
  94. }
  95. if (typeof obj.fehlstundenUnentschuldigt !== "undefined") {
  96. result += '"fehlstundenUnentschuldigt" : ' + ((!obj.fehlstundenUnentschuldigt) ? 'null' : obj.fehlstundenUnentschuldigt.valueOf()) + ',';
  97. }
  98. if (typeof obj.fachbezogeneBemerkungen !== "undefined") {
  99. result += '"fachbezogeneBemerkungen" : ' + ((!obj.fachbezogeneBemerkungen) ? 'null' : '"' + obj.fachbezogeneBemerkungen.valueOf() + '"') + ',';
  100. }
  101. if (typeof obj.neueZuweisungKursart !== "undefined") {
  102. result += '"neueZuweisungKursart" : ' + ((!obj.neueZuweisungKursart) ? 'null' : '"' + obj.neueZuweisungKursart.valueOf() + '"') + ',';
  103. }
  104. if (typeof obj.teilleistungen !== "undefined") {
  105. if (!obj.teilleistungen) {
  106. result += '[]';
  107. }
  108. else {
  109. result += '[ ';
  110. for (let i = 0; i < obj.teilleistungen.size(); i++) {
  111. let elem = obj.teilleistungen.get(i);
  112. result += ENMTeilleistung_1.ENMTeilleistung.transpilerToJSON(elem);
  113. if (i < obj.teilleistungen.size() - 1)
  114. result += ',';
  115. }
  116. result += ' ]' + ',';
  117. }
  118. }
  119. result = result.slice(0, -1);
  120. result += '}';
  121. return result;
  122. }
  123. }
  124. exports.ENMLeistung = ENMLeistung;
  125. function cast_de_nrw_schule_svws_core_data_enm_ENMLeistung(obj) {
  126. return obj;
  127. }
  128. exports.cast_de_nrw_schule_svws_core_data_enm_ENMLeistung = cast_de_nrw_schule_svws_core_data_enm_ENMLeistung;
  129. //# sourceMappingURL=ENMLeistung.js.map