ENMLeistung.ts 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaInteger, cast_java_lang_Integer } from '../../../java/lang/JavaInteger';
  3. import { ENMTeilleistung, cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistung } from '../../../core/data/enm/ENMTeilleistung';
  4. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  5. import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
  6. import { Vector, cast_java_util_Vector } from '../../../java/util/Vector';
  7. export class ENMLeistung extends JavaObject {
  8. public id : number = 0;
  9. public lerngruppenID : number = 0;
  10. public note : String | null = null;
  11. public istSchriftlich : Boolean | null = null;
  12. public abiturfach : Number | null = null;
  13. public fehlstundenGesamt : Number | null = null;
  14. public fehlstundenUnentschuldigt : Number | null = null;
  15. public fachbezogeneBemerkungen : String | null = null;
  16. public neueZuweisungKursart : String | null = null;
  17. public teilleistungen : Vector<ENMTeilleistung> = new Vector();
  18. public constructor() {
  19. super();
  20. }
  21. isTranspiledInstanceOf(name : string): boolean {
  22. return ['de.nrw.schule.svws.core.data.enm.ENMLeistung'].includes(name);
  23. }
  24. public static transpilerFromJSON(json : string): ENMLeistung {
  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.transpilerFromJSON(JSON.stringify(elem)));
  43. }
  44. }
  45. return result;
  46. }
  47. public static transpilerToJSON(obj : ENMLeistung) : string {
  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. } else {
  61. result += '[ ';
  62. for (let i : number = 0; i < obj.teilleistungen.size(); i++) {
  63. let elem = obj.teilleistungen.get(i);
  64. result += ENMTeilleistung.transpilerToJSON(elem);
  65. if (i < obj.teilleistungen.size() - 1)
  66. result += ',';
  67. }
  68. result += ' ]' + ',';
  69. }
  70. result = result.slice(0, -1);
  71. result += '}';
  72. return result;
  73. }
  74. public static transpilerToJSONPatch(obj : Partial<ENMLeistung>) : string {
  75. let result = '{';
  76. if (typeof obj.id !== "undefined") {
  77. result += '"id" : ' + obj.id + ',';
  78. }
  79. if (typeof obj.lerngruppenID !== "undefined") {
  80. result += '"lerngruppenID" : ' + obj.lerngruppenID + ',';
  81. }
  82. if (typeof obj.note !== "undefined") {
  83. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  84. }
  85. if (typeof obj.istSchriftlich !== "undefined") {
  86. result += '"istSchriftlich" : ' + ((!obj.istSchriftlich) ? 'null' : obj.istSchriftlich.valueOf()) + ',';
  87. }
  88. if (typeof obj.abiturfach !== "undefined") {
  89. result += '"abiturfach" : ' + ((!obj.abiturfach) ? 'null' : obj.abiturfach.valueOf()) + ',';
  90. }
  91. if (typeof obj.fehlstundenGesamt !== "undefined") {
  92. result += '"fehlstundenGesamt" : ' + ((!obj.fehlstundenGesamt) ? 'null' : obj.fehlstundenGesamt.valueOf()) + ',';
  93. }
  94. if (typeof obj.fehlstundenUnentschuldigt !== "undefined") {
  95. result += '"fehlstundenUnentschuldigt" : ' + ((!obj.fehlstundenUnentschuldigt) ? 'null' : obj.fehlstundenUnentschuldigt.valueOf()) + ',';
  96. }
  97. if (typeof obj.fachbezogeneBemerkungen !== "undefined") {
  98. result += '"fachbezogeneBemerkungen" : ' + ((!obj.fachbezogeneBemerkungen) ? 'null' : '"' + obj.fachbezogeneBemerkungen.valueOf() + '"') + ',';
  99. }
  100. if (typeof obj.neueZuweisungKursart !== "undefined") {
  101. result += '"neueZuweisungKursart" : ' + ((!obj.neueZuweisungKursart) ? 'null' : '"' + obj.neueZuweisungKursart.valueOf() + '"') + ',';
  102. }
  103. if (typeof obj.teilleistungen !== "undefined") {
  104. if (!obj.teilleistungen) {
  105. result += '[]';
  106. } else {
  107. result += '[ ';
  108. for (let i : number = 0; i < obj.teilleistungen.size(); i++) {
  109. let elem = obj.teilleistungen.get(i);
  110. result += ENMTeilleistung.transpilerToJSON(elem);
  111. if (i < obj.teilleistungen.size() - 1)
  112. result += ',';
  113. }
  114. result += ' ]' + ',';
  115. }
  116. }
  117. result = result.slice(0, -1);
  118. result += '}';
  119. return result;
  120. }
  121. }
  122. export function cast_de_nrw_schule_svws_core_data_enm_ENMLeistung(obj : unknown) : ENMLeistung {
  123. return obj as ENMLeistung;
  124. }