AbiturFachbelegungHalbjahr.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_gost_AbiturFachbelegungHalbjahr = exports.AbiturFachbelegungHalbjahr = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class AbiturFachbelegungHalbjahr extends JavaObject_1.JavaObject {
  6. halbjahrKuerzel = "";
  7. kursartKuerzel = "";
  8. schriftlich = null;
  9. biliSprache = null;
  10. lehrer = null;
  11. wochenstunden = 0;
  12. fehlstundenGesamt = 0;
  13. fehlstundenUnentschuldigt = 0;
  14. notenkuerzel = null;
  15. block1gewertet = null;
  16. block1kursAufZeugnis = null;
  17. constructor() {
  18. super();
  19. }
  20. isTranspiledInstanceOf(name) {
  21. return ['de.nrw.schule.svws.core.data.gost.AbiturFachbelegungHalbjahr'].includes(name);
  22. }
  23. static transpilerFromJSON(json) {
  24. const obj = JSON.parse(json);
  25. const result = new AbiturFachbelegungHalbjahr();
  26. if (typeof obj.halbjahrKuerzel === "undefined")
  27. throw new Error('invalid json format, missing attribute halbjahrKuerzel');
  28. result.halbjahrKuerzel = obj.halbjahrKuerzel;
  29. if (typeof obj.kursartKuerzel === "undefined")
  30. throw new Error('invalid json format, missing attribute kursartKuerzel');
  31. result.kursartKuerzel = obj.kursartKuerzel;
  32. result.schriftlich = typeof obj.schriftlich === "undefined" ? null : obj.schriftlich;
  33. result.biliSprache = typeof obj.biliSprache === "undefined" ? null : obj.biliSprache;
  34. result.lehrer = typeof obj.lehrer === "undefined" ? null : obj.lehrer;
  35. if (typeof obj.wochenstunden === "undefined")
  36. throw new Error('invalid json format, missing attribute wochenstunden');
  37. result.wochenstunden = obj.wochenstunden;
  38. if (typeof obj.fehlstundenGesamt === "undefined")
  39. throw new Error('invalid json format, missing attribute fehlstundenGesamt');
  40. result.fehlstundenGesamt = obj.fehlstundenGesamt;
  41. if (typeof obj.fehlstundenUnentschuldigt === "undefined")
  42. throw new Error('invalid json format, missing attribute fehlstundenUnentschuldigt');
  43. result.fehlstundenUnentschuldigt = obj.fehlstundenUnentschuldigt;
  44. result.notenkuerzel = typeof obj.notenkuerzel === "undefined" ? null : obj.notenkuerzel;
  45. result.block1gewertet = typeof obj.block1gewertet === "undefined" ? null : obj.block1gewertet;
  46. result.block1kursAufZeugnis = typeof obj.block1kursAufZeugnis === "undefined" ? null : obj.block1kursAufZeugnis;
  47. return result;
  48. }
  49. static transpilerToJSON(obj) {
  50. let result = '{';
  51. result += '"halbjahrKuerzel" : ' + '"' + obj.halbjahrKuerzel.valueOf() + '"' + ',';
  52. result += '"kursartKuerzel" : ' + '"' + obj.kursartKuerzel.valueOf() + '"' + ',';
  53. result += '"schriftlich" : ' + ((!obj.schriftlich) ? 'null' : obj.schriftlich.valueOf()) + ',';
  54. result += '"biliSprache" : ' + ((!obj.biliSprache) ? 'null' : '"' + obj.biliSprache.valueOf() + '"') + ',';
  55. result += '"lehrer" : ' + ((!obj.lehrer) ? 'null' : obj.lehrer.valueOf()) + ',';
  56. result += '"wochenstunden" : ' + obj.wochenstunden + ',';
  57. result += '"fehlstundenGesamt" : ' + obj.fehlstundenGesamt + ',';
  58. result += '"fehlstundenUnentschuldigt" : ' + obj.fehlstundenUnentschuldigt + ',';
  59. result += '"notenkuerzel" : ' + ((!obj.notenkuerzel) ? 'null' : '"' + obj.notenkuerzel.valueOf() + '"') + ',';
  60. result += '"block1gewertet" : ' + ((!obj.block1gewertet) ? 'null' : obj.block1gewertet.valueOf()) + ',';
  61. result += '"block1kursAufZeugnis" : ' + ((!obj.block1kursAufZeugnis) ? 'null' : obj.block1kursAufZeugnis.valueOf()) + ',';
  62. result = result.slice(0, -1);
  63. result += '}';
  64. return result;
  65. }
  66. static transpilerToJSONPatch(obj) {
  67. let result = '{';
  68. if (typeof obj.halbjahrKuerzel !== "undefined") {
  69. result += '"halbjahrKuerzel" : ' + '"' + obj.halbjahrKuerzel.valueOf() + '"' + ',';
  70. }
  71. if (typeof obj.kursartKuerzel !== "undefined") {
  72. result += '"kursartKuerzel" : ' + '"' + obj.kursartKuerzel.valueOf() + '"' + ',';
  73. }
  74. if (typeof obj.schriftlich !== "undefined") {
  75. result += '"schriftlich" : ' + ((!obj.schriftlich) ? 'null' : obj.schriftlich.valueOf()) + ',';
  76. }
  77. if (typeof obj.biliSprache !== "undefined") {
  78. result += '"biliSprache" : ' + ((!obj.biliSprache) ? 'null' : '"' + obj.biliSprache.valueOf() + '"') + ',';
  79. }
  80. if (typeof obj.lehrer !== "undefined") {
  81. result += '"lehrer" : ' + ((!obj.lehrer) ? 'null' : obj.lehrer.valueOf()) + ',';
  82. }
  83. if (typeof obj.wochenstunden !== "undefined") {
  84. result += '"wochenstunden" : ' + obj.wochenstunden + ',';
  85. }
  86. if (typeof obj.fehlstundenGesamt !== "undefined") {
  87. result += '"fehlstundenGesamt" : ' + obj.fehlstundenGesamt + ',';
  88. }
  89. if (typeof obj.fehlstundenUnentschuldigt !== "undefined") {
  90. result += '"fehlstundenUnentschuldigt" : ' + obj.fehlstundenUnentschuldigt + ',';
  91. }
  92. if (typeof obj.notenkuerzel !== "undefined") {
  93. result += '"notenkuerzel" : ' + ((!obj.notenkuerzel) ? 'null' : '"' + obj.notenkuerzel.valueOf() + '"') + ',';
  94. }
  95. if (typeof obj.block1gewertet !== "undefined") {
  96. result += '"block1gewertet" : ' + ((!obj.block1gewertet) ? 'null' : obj.block1gewertet.valueOf()) + ',';
  97. }
  98. if (typeof obj.block1kursAufZeugnis !== "undefined") {
  99. result += '"block1kursAufZeugnis" : ' + ((!obj.block1kursAufZeugnis) ? 'null' : obj.block1kursAufZeugnis.valueOf()) + ',';
  100. }
  101. result = result.slice(0, -1);
  102. result += '}';
  103. return result;
  104. }
  105. }
  106. exports.AbiturFachbelegungHalbjahr = AbiturFachbelegungHalbjahr;
  107. function cast_de_nrw_schule_svws_core_data_gost_AbiturFachbelegungHalbjahr(obj) {
  108. return obj;
  109. }
  110. exports.cast_de_nrw_schule_svws_core_data_gost_AbiturFachbelegungHalbjahr = cast_de_nrw_schule_svws_core_data_gost_AbiturFachbelegungHalbjahr;
  111. //# sourceMappingURL=AbiturFachbelegungHalbjahr.js.map