ENMTeilleistungsart.js 2.7 KB

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