GostStatistikFachwahlHalbjahr.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_gost_GostStatistikFachwahlHalbjahr = exports.GostStatistikFachwahlHalbjahr = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class GostStatistikFachwahlHalbjahr extends JavaObject_1.JavaObject {
  6. wahlenGKMuendlich = 0;
  7. wahlenGKSchriftlich = 0;
  8. wahlenGK = 0;
  9. wahlenZK = 0;
  10. wahlenLK = 0;
  11. constructor() {
  12. super();
  13. }
  14. isTranspiledInstanceOf(name) {
  15. return ['de.nrw.schule.svws.core.data.gost.GostStatistikFachwahlHalbjahr'].includes(name);
  16. }
  17. static transpilerFromJSON(json) {
  18. const obj = JSON.parse(json);
  19. const result = new GostStatistikFachwahlHalbjahr();
  20. if (typeof obj.wahlenGKMuendlich === "undefined")
  21. throw new Error('invalid json format, missing attribute wahlenGKMuendlich');
  22. result.wahlenGKMuendlich = obj.wahlenGKMuendlich;
  23. if (typeof obj.wahlenGKSchriftlich === "undefined")
  24. throw new Error('invalid json format, missing attribute wahlenGKSchriftlich');
  25. result.wahlenGKSchriftlich = obj.wahlenGKSchriftlich;
  26. if (typeof obj.wahlenGK === "undefined")
  27. throw new Error('invalid json format, missing attribute wahlenGK');
  28. result.wahlenGK = obj.wahlenGK;
  29. if (typeof obj.wahlenZK === "undefined")
  30. throw new Error('invalid json format, missing attribute wahlenZK');
  31. result.wahlenZK = obj.wahlenZK;
  32. if (typeof obj.wahlenLK === "undefined")
  33. throw new Error('invalid json format, missing attribute wahlenLK');
  34. result.wahlenLK = obj.wahlenLK;
  35. return result;
  36. }
  37. static transpilerToJSON(obj) {
  38. let result = '{';
  39. result += '"wahlenGKMuendlich" : ' + obj.wahlenGKMuendlich + ',';
  40. result += '"wahlenGKSchriftlich" : ' + obj.wahlenGKSchriftlich + ',';
  41. result += '"wahlenGK" : ' + obj.wahlenGK + ',';
  42. result += '"wahlenZK" : ' + obj.wahlenZK + ',';
  43. result += '"wahlenLK" : ' + obj.wahlenLK + ',';
  44. result = result.slice(0, -1);
  45. result += '}';
  46. return result;
  47. }
  48. static transpilerToJSONPatch(obj) {
  49. let result = '{';
  50. if (typeof obj.wahlenGKMuendlich !== "undefined") {
  51. result += '"wahlenGKMuendlich" : ' + obj.wahlenGKMuendlich + ',';
  52. }
  53. if (typeof obj.wahlenGKSchriftlich !== "undefined") {
  54. result += '"wahlenGKSchriftlich" : ' + obj.wahlenGKSchriftlich + ',';
  55. }
  56. if (typeof obj.wahlenGK !== "undefined") {
  57. result += '"wahlenGK" : ' + obj.wahlenGK + ',';
  58. }
  59. if (typeof obj.wahlenZK !== "undefined") {
  60. result += '"wahlenZK" : ' + obj.wahlenZK + ',';
  61. }
  62. if (typeof obj.wahlenLK !== "undefined") {
  63. result += '"wahlenLK" : ' + obj.wahlenLK + ',';
  64. }
  65. result = result.slice(0, -1);
  66. result += '}';
  67. return result;
  68. }
  69. }
  70. exports.GostStatistikFachwahlHalbjahr = GostStatistikFachwahlHalbjahr;
  71. function cast_de_nrw_schule_svws_core_data_gost_GostStatistikFachwahlHalbjahr(obj) {
  72. return obj;
  73. }
  74. exports.cast_de_nrw_schule_svws_core_data_gost_GostStatistikFachwahlHalbjahr = cast_de_nrw_schule_svws_core_data_gost_GostStatistikFachwahlHalbjahr;
  75. //# sourceMappingURL=GostStatistikFachwahlHalbjahr.js.map