KursDaten.ts 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaLong, cast_java_lang_Long } from '../../../java/lang/JavaLong';
  3. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  4. import { Vector, cast_java_util_Vector } from '../../../java/util/Vector';
  5. export class KursDaten extends JavaObject {
  6. public id : number = 0;
  7. public idSchuljahresabschnitt : number = 0;
  8. public kuerzel : String = "";
  9. public idJahrgaenge : Vector<Number> = new Vector();
  10. public idFach : number = 0;
  11. public lehrer : Number | null = null;
  12. public sortierung : number = 0;
  13. public istSichtbar : boolean = false;
  14. public constructor() {
  15. super();
  16. }
  17. isTranspiledInstanceOf(name : string): boolean {
  18. return ['de.nrw.schule.svws.core.data.kurse.KursDaten'].includes(name);
  19. }
  20. public static transpilerFromJSON(json : string): KursDaten {
  21. const obj = JSON.parse(json);
  22. const result = new KursDaten();
  23. if (typeof obj.id === "undefined")
  24. throw new Error('invalid json format, missing attribute id');
  25. result.id = obj.id;
  26. if (typeof obj.idSchuljahresabschnitt === "undefined")
  27. throw new Error('invalid json format, missing attribute idSchuljahresabschnitt');
  28. result.idSchuljahresabschnitt = obj.idSchuljahresabschnitt;
  29. if (typeof obj.kuerzel === "undefined")
  30. throw new Error('invalid json format, missing attribute kuerzel');
  31. result.kuerzel = obj.kuerzel;
  32. if (!!obj.idJahrgaenge) {
  33. for (let elem of obj.idJahrgaenge) {
  34. result.idJahrgaenge?.add(elem);
  35. }
  36. }
  37. if (typeof obj.idFach === "undefined")
  38. throw new Error('invalid json format, missing attribute idFach');
  39. result.idFach = obj.idFach;
  40. result.lehrer = typeof obj.lehrer === "undefined" ? null : obj.lehrer;
  41. if (typeof obj.sortierung === "undefined")
  42. throw new Error('invalid json format, missing attribute sortierung');
  43. result.sortierung = obj.sortierung;
  44. if (typeof obj.istSichtbar === "undefined")
  45. throw new Error('invalid json format, missing attribute istSichtbar');
  46. result.istSichtbar = obj.istSichtbar;
  47. return result;
  48. }
  49. public static transpilerToJSON(obj : KursDaten) : string {
  50. let result = '{';
  51. result += '"id" : ' + obj.id + ',';
  52. result += '"idSchuljahresabschnitt" : ' + obj.idSchuljahresabschnitt + ',';
  53. result += '"kuerzel" : ' + '"' + obj.kuerzel.valueOf() + '"' + ',';
  54. if (!obj.idJahrgaenge) {
  55. result += '[]';
  56. } else {
  57. result += '[ ';
  58. for (let i : number = 0; i < obj.idJahrgaenge.size(); i++) {
  59. let elem = obj.idJahrgaenge.get(i);
  60. result += elem;
  61. if (i < obj.idJahrgaenge.size() - 1)
  62. result += ',';
  63. }
  64. result += ' ]' + ',';
  65. }
  66. result += '"idFach" : ' + obj.idFach + ',';
  67. result += '"lehrer" : ' + ((!obj.lehrer) ? 'null' : obj.lehrer.valueOf()) + ',';
  68. result += '"sortierung" : ' + obj.sortierung + ',';
  69. result += '"istSichtbar" : ' + obj.istSichtbar + ',';
  70. result = result.slice(0, -1);
  71. result += '}';
  72. return result;
  73. }
  74. public static transpilerToJSONPatch(obj : Partial<KursDaten>) : string {
  75. let result = '{';
  76. if (typeof obj.id !== "undefined") {
  77. result += '"id" : ' + obj.id + ',';
  78. }
  79. if (typeof obj.idSchuljahresabschnitt !== "undefined") {
  80. result += '"idSchuljahresabschnitt" : ' + obj.idSchuljahresabschnitt + ',';
  81. }
  82. if (typeof obj.kuerzel !== "undefined") {
  83. result += '"kuerzel" : ' + '"' + obj.kuerzel.valueOf() + '"' + ',';
  84. }
  85. if (typeof obj.idJahrgaenge !== "undefined") {
  86. if (!obj.idJahrgaenge) {
  87. result += '[]';
  88. } else {
  89. result += '[ ';
  90. for (let i : number = 0; i < obj.idJahrgaenge.size(); i++) {
  91. let elem = obj.idJahrgaenge.get(i);
  92. result += elem;
  93. if (i < obj.idJahrgaenge.size() - 1)
  94. result += ',';
  95. }
  96. result += ' ]' + ',';
  97. }
  98. }
  99. if (typeof obj.idFach !== "undefined") {
  100. result += '"idFach" : ' + obj.idFach + ',';
  101. }
  102. if (typeof obj.lehrer !== "undefined") {
  103. result += '"lehrer" : ' + ((!obj.lehrer) ? 'null' : obj.lehrer.valueOf()) + ',';
  104. }
  105. if (typeof obj.sortierung !== "undefined") {
  106. result += '"sortierung" : ' + obj.sortierung + ',';
  107. }
  108. if (typeof obj.istSichtbar !== "undefined") {
  109. result += '"istSichtbar" : ' + obj.istSichtbar + ',';
  110. }
  111. result = result.slice(0, -1);
  112. result += '}';
  113. return result;
  114. }
  115. }
  116. export function cast_de_nrw_schule_svws_core_data_kurse_KursDaten(obj : unknown) : KursDaten {
  117. return obj as KursDaten;
  118. }