JahrgangsDaten.ts 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. export class JahrgangsDaten extends JavaObject {
  5. public id : number = 0;
  6. public kuerzel : String | null = null;
  7. public kuerzelStatistik : String | null = null;
  8. public bezeichnung : String | null = null;
  9. public sortierung : number = 0;
  10. public idSchulgliederung : String | null = null;
  11. public idFolgejahrgang : Number | null = null;
  12. public istSichtbar : boolean = false;
  13. public constructor() {
  14. super();
  15. }
  16. isTranspiledInstanceOf(name : string): boolean {
  17. return ['de.nrw.schule.svws.core.data.jahrgang.JahrgangsDaten'].includes(name);
  18. }
  19. public static transpilerFromJSON(json : string): JahrgangsDaten {
  20. const obj = JSON.parse(json);
  21. const result = new JahrgangsDaten();
  22. if (typeof obj.id === "undefined")
  23. throw new Error('invalid json format, missing attribute id');
  24. result.id = obj.id;
  25. result.kuerzel = typeof obj.kuerzel === "undefined" ? null : obj.kuerzel;
  26. result.kuerzelStatistik = typeof obj.kuerzelStatistik === "undefined" ? null : obj.kuerzelStatistik;
  27. result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
  28. if (typeof obj.sortierung === "undefined")
  29. throw new Error('invalid json format, missing attribute sortierung');
  30. result.sortierung = obj.sortierung;
  31. result.idSchulgliederung = typeof obj.idSchulgliederung === "undefined" ? null : obj.idSchulgliederung;
  32. result.idFolgejahrgang = typeof obj.idFolgejahrgang === "undefined" ? null : obj.idFolgejahrgang;
  33. if (typeof obj.istSichtbar === "undefined")
  34. throw new Error('invalid json format, missing attribute istSichtbar');
  35. result.istSichtbar = obj.istSichtbar;
  36. return result;
  37. }
  38. public static transpilerToJSON(obj : JahrgangsDaten) : string {
  39. let result = '{';
  40. result += '"id" : ' + obj.id + ',';
  41. result += '"kuerzel" : ' + ((!obj.kuerzel) ? 'null' : '"' + obj.kuerzel.valueOf() + '"') + ',';
  42. result += '"kuerzelStatistik" : ' + ((!obj.kuerzelStatistik) ? 'null' : '"' + obj.kuerzelStatistik.valueOf() + '"') + ',';
  43. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  44. result += '"sortierung" : ' + obj.sortierung + ',';
  45. result += '"idSchulgliederung" : ' + ((!obj.idSchulgliederung) ? 'null' : '"' + obj.idSchulgliederung.valueOf() + '"') + ',';
  46. result += '"idFolgejahrgang" : ' + ((!obj.idFolgejahrgang) ? 'null' : obj.idFolgejahrgang.valueOf()) + ',';
  47. result += '"istSichtbar" : ' + obj.istSichtbar + ',';
  48. result = result.slice(0, -1);
  49. result += '}';
  50. return result;
  51. }
  52. public static transpilerToJSONPatch(obj : Partial<JahrgangsDaten>) : string {
  53. let result = '{';
  54. if (typeof obj.id !== "undefined") {
  55. result += '"id" : ' + obj.id + ',';
  56. }
  57. if (typeof obj.kuerzel !== "undefined") {
  58. result += '"kuerzel" : ' + ((!obj.kuerzel) ? 'null' : '"' + obj.kuerzel.valueOf() + '"') + ',';
  59. }
  60. if (typeof obj.kuerzelStatistik !== "undefined") {
  61. result += '"kuerzelStatistik" : ' + ((!obj.kuerzelStatistik) ? 'null' : '"' + obj.kuerzelStatistik.valueOf() + '"') + ',';
  62. }
  63. if (typeof obj.bezeichnung !== "undefined") {
  64. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  65. }
  66. if (typeof obj.sortierung !== "undefined") {
  67. result += '"sortierung" : ' + obj.sortierung + ',';
  68. }
  69. if (typeof obj.idSchulgliederung !== "undefined") {
  70. result += '"idSchulgliederung" : ' + ((!obj.idSchulgliederung) ? 'null' : '"' + obj.idSchulgliederung.valueOf() + '"') + ',';
  71. }
  72. if (typeof obj.idFolgejahrgang !== "undefined") {
  73. result += '"idFolgejahrgang" : ' + ((!obj.idFolgejahrgang) ? 'null' : obj.idFolgejahrgang.valueOf()) + ',';
  74. }
  75. if (typeof obj.istSichtbar !== "undefined") {
  76. result += '"istSichtbar" : ' + obj.istSichtbar + ',';
  77. }
  78. result = result.slice(0, -1);
  79. result += '}';
  80. return result;
  81. }
  82. }
  83. export function cast_de_nrw_schule_svws_core_data_jahrgang_JahrgangsDaten(obj : unknown) : JahrgangsDaten {
  84. return obj as JahrgangsDaten;
  85. }