GostBlockungSchiene.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_gost_GostBlockungSchiene = exports.GostBlockungSchiene = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class GostBlockungSchiene extends JavaObject_1.JavaObject {
  6. id = -1;
  7. bezeichnung = "Neue Schiene";
  8. wochenstunden = 3;
  9. constructor() {
  10. super();
  11. }
  12. isTranspiledInstanceOf(name) {
  13. return ['de.nrw.schule.svws.core.data.gost.GostBlockungSchiene'].includes(name);
  14. }
  15. static transpilerFromJSON(json) {
  16. const obj = JSON.parse(json);
  17. const result = new GostBlockungSchiene();
  18. if (typeof obj.id === "undefined")
  19. throw new Error('invalid json format, missing attribute id');
  20. result.id = obj.id;
  21. if (typeof obj.bezeichnung === "undefined")
  22. throw new Error('invalid json format, missing attribute bezeichnung');
  23. result.bezeichnung = obj.bezeichnung;
  24. result.wochenstunden = typeof obj.wochenstunden === "undefined" ? null : obj.wochenstunden;
  25. return result;
  26. }
  27. static transpilerToJSON(obj) {
  28. let result = '{';
  29. result += '"id" : ' + obj.id + ',';
  30. result += '"bezeichnung" : ' + '"' + obj.bezeichnung.valueOf() + '"' + ',';
  31. result += '"wochenstunden" : ' + ((!obj.wochenstunden) ? 'null' : obj.wochenstunden.valueOf()) + ',';
  32. result = result.slice(0, -1);
  33. result += '}';
  34. return result;
  35. }
  36. static transpilerToJSONPatch(obj) {
  37. let result = '{';
  38. if (typeof obj.id !== "undefined") {
  39. result += '"id" : ' + obj.id + ',';
  40. }
  41. if (typeof obj.bezeichnung !== "undefined") {
  42. result += '"bezeichnung" : ' + '"' + obj.bezeichnung.valueOf() + '"' + ',';
  43. }
  44. if (typeof obj.wochenstunden !== "undefined") {
  45. result += '"wochenstunden" : ' + ((!obj.wochenstunden) ? 'null' : obj.wochenstunden.valueOf()) + ',';
  46. }
  47. result = result.slice(0, -1);
  48. result += '}';
  49. return result;
  50. }
  51. }
  52. exports.GostBlockungSchiene = GostBlockungSchiene;
  53. function cast_de_nrw_schule_svws_core_data_gost_GostBlockungSchiene(obj) {
  54. return obj;
  55. }
  56. exports.cast_de_nrw_schule_svws_core_data_gost_GostBlockungSchiene = cast_de_nrw_schule_svws_core_data_gost_GostBlockungSchiene;
  57. //# sourceMappingURL=GostBlockungSchiene.js.map